方诺官网改正版
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

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