方诺官网改正版
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

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