Created
January 21, 2020 10:49
-
-
Save DmitryOlkhovoi/59409a462a606eb03c95d7d9616b6aa9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.with-ripple { | |
@apply relative overflow-hidden; | |
@keyframes ripple { | |
to { | |
@apply opacity-0; | |
transform: scale(2.5); | |
} | |
} | |
.ripple { | |
@apply absolute; | |
z-index: 1; | |
border-radius: 50%; | |
background-color: var(--grey04); | |
transform: scale(0); | |
animation: ripple 0.6s linear; | |
} | |
&.primary { | |
.ripple { | |
background-color: var(--black02); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment