Joined buttons

This commit is contained in:
Prospector
2023-10-14 14:44:27 -07:00
parent ffb491a61f
commit e555c4d083
5 changed files with 91 additions and 1 deletions

View File

@@ -486,6 +486,18 @@ a,
background: none;
box-shadow: none;
}
&.btn-dropdown-animation {
svg {
transition: transform 0.125s ease-in-out;
}
&.popout-open {
svg {
transform: rotate(180deg);
}
}
}
}
.btn-group {
@@ -494,6 +506,27 @@ a,
flex-wrap: wrap;
}
.joined-buttons {
display: flex;
gap: 1px;
> :not(:first-child) {
&.btn,
> .btn {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
}
> :not(:last-child) {
&.btn,
> .btn {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
}
}
// PROJECT CARDS
.project-list {