| 12345678910111213141516171819202122232425262728293031 |
- .grw-fab :global {
- // workaround
- // https://stackoverflow.com/a/57667536
- .fadeInUp {
- & :local {
- animation: fab-fadeinup 1s ease 0s;
- }
- }
- .fadeOut {
- & :local {
- animation: fab-fadeout 0.5s ease 0s forwards;
- }
- }
- }
- @keyframes fab-fadeinup {
- 0% {
- opacity: 0;
- transform: translateY(100px);
- }
- 100% {
- opacity: 1;
- transform: translateY(0px);
- }
- }
- @keyframes fab-fadeout {
- 100% {
- opacity: 0
- }
- }
|