方诺官网改正版
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.
 
 
 

21 lines
578 B

  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. }