_button.scss 192 B

12345678910
  1. // reason: toggleable button has box shadow on active
  2. .btn-group-toggle,
  3. .btn-group-toggle {
  4. :not([class*='btn-outline-']) {
  5. &.active,
  6. &:active {
  7. box-shadow: none;
  8. }
  9. }
  10. }