0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00
wagtail/client/scss/components/_button-select.scss

22 lines
439 B
SCSS
Raw Normal View History

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