_button-select.scss 439 B

123456789101112131415161718192021
  1. .button-select {
  2. &__option {
  3. display: block;
  4. width: 100%;
  5. margin-bottom: 10px;
  6. background-color: #fff;
  7. border-color: $color-teal;
  8. color: #262626;
  9. &--selected {
  10. background-color: $color-teal;
  11. color: #fff;
  12. }
  13. }
  14. }
  15. .button-select .button-select__option {
  16. /* override default margin from horizontally-aligned buttons */
  17. margin-left: 0;
  18. }