You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
661 B
38 lines
661 B
.button-group {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
&__button {
|
|
font-family: Roboto;
|
|
font-size: 1rem;
|
|
color: $tundora;
|
|
border-style: solid;
|
|
border-color: $alto;
|
|
border-width: 1px 1px 1px;
|
|
border-left: 0;
|
|
flex: 1;
|
|
padding: 12px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
&:first-child {
|
|
border-left: 1px solid $alto;
|
|
border-radius: 4px 0 0 4px;
|
|
}
|
|
|
|
&:last-child {
|
|
border-radius: 0 4px 4px 0;
|
|
}
|
|
|
|
&--active {
|
|
background-color: $dodger-blue;
|
|
color: $white;
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: .5;
|
|
}
|
|
}
|
|
} |