方诺官网改正版
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

_dropdown.scss 578 B

před 5 roky
123456789101112131415161718192021
  1. .dropdown .dropdown-box {
  2. transition: visibility 0s linear 0.2s, opacity 0.2s 0s;
  3. @apply invisible opacity-0;
  4. &.show {
  5. transition: visibility 0s linear 0s, opacity 0.2s 0s;
  6. @apply visible opacity-100;
  7. > .dropdown-box__content {
  8. margin-top: -1px;
  9. .tab-content .tab-content__pane {
  10. @apply visible;
  11. }
  12. }
  13. }
  14. .dropdown-box__content {
  15. transition: margin-top 0.2s;
  16. @apply mt-5;
  17. .tab-content .tab-content__pane {
  18. @apply invisible;
  19. }
  20. }
  21. }