1234567891011121314151617181920212223242526272829303132333435 |
- .roleMenu {
- box-shadow: rgba(74, 53, 107, 0.08) 0 0 13px 0;
- .active {
- @apply text-white bg-primary rounded-4px;
- }
- }
- .scale-up-center {
- -webkit-animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
- animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
- }
- @-webkit-keyframes scale-up-center {
- 0% {
- -webkit-transform: scale(0.5);
- transform: scale(0.5);
- }
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- @apply text-white bg-primary rounded-4px;
- }
- }
- @keyframes scale-up-center {
- 0% {
- -webkit-transform: scale(0.5);
- transform: scale(0.5);
- }
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- @apply text-white bg-primary rounded-4px;
- }
- }
|