diff options
Diffstat (limited to 'src/styles/base/_animations.scss')
| -rw-r--r-- | src/styles/base/_animations.scss | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/styles/base/_animations.scss b/src/styles/base/_animations.scss index 3485729..325c673 100644 --- a/src/styles/base/_animations.scss +++ b/src/styles/base/_animations.scss @@ -55,3 +55,23 @@ var(--draw-border-width, fun.convert-px(3)) 100%; } } + +@keyframes slide-in-from-bottom { + 0% { + transform: translateY(100%); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes slide-in-from-top { + 0% { + transform: translateY(-200%); + } + + 100% { + transform: translateY(0); + } +} |
