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.

17 lines
200 B

3 years ago
  1. /**
  2. *
  3. *
  4. *
  5. */
  6. @mixin component__accordion()
  7. {
  8. .accordion {
  9. &__item {
  10. display: none;
  11. &--active {
  12. display: block;
  13. }
  14. }
  15. }
  16. }