Added the bounceIn animations to the main.sass

This commit is contained in:
2023-11-19 15:51:16 +01:00
parent e1de02369e
commit b4790a19e9

View File

@ -23,4 +23,12 @@ body, html
border-radius: 10px
::-webkit-scrollbar-thumb:hover
background: darken($background, 5%)
background: darken($background, 5%)
@keyframes bounceIn
from
transform: scale(-0.95) rotate(3deg)
50%
transform: scale(1.02) rotate(-3deg)
to
transform: scale(1) rotate(0deg)