wagtail/client/scss/components/_button-select.scss

22 wiersze
395 B
SCSS
Czysty Zwykły widok Historia

2020-03-19 13:59:22 +00:00
.button-select {
&__option {
display: block;
width: 100%;
margin-bottom: 10px;
2020-03-19 13:59:22 +00:00
background-color: #fff;
border-color: $color-teal;
color: #262626;
2020-03-19 13:59:22 +00:00
&--selected {
background-color: $color-teal;
color: #fff;
2020-03-19 13:59:22 +00:00
}
}
2020-03-19 13:59:22 +00:00
}
.button-select .button-select__option {
/* override default margin from horizontally-aligned buttons */
margin-inline-start: 0;
2020-03-19 13:59:22 +00:00
}