index.less 760 B

1234567891011121314151617181920212223242526272829303132333435
  1. .roleMenu {
  2. box-shadow: rgba(74, 53, 107, 0.08) 0 0 13px 0;
  3. .active {
  4. @apply text-white bg-primary rounded-4px;
  5. }
  6. }
  7. .scale-up-center {
  8. -webkit-animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  9. animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  10. }
  11. @-webkit-keyframes scale-up-center {
  12. 0% {
  13. -webkit-transform: scale(0.5);
  14. transform: scale(0.5);
  15. }
  16. 100% {
  17. -webkit-transform: scale(1);
  18. transform: scale(1);
  19. @apply text-white bg-primary rounded-4px;
  20. }
  21. }
  22. @keyframes scale-up-center {
  23. 0% {
  24. -webkit-transform: scale(0.5);
  25. transform: scale(0.5);
  26. }
  27. 100% {
  28. -webkit-transform: scale(1);
  29. transform: scale(1);
  30. @apply text-white bg-primary rounded-4px;
  31. }
  32. }