diff options
Diffstat (limited to 'src/styles/base/_animations.scss')
| -rw-r--r-- | src/styles/base/_animations.scss | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/styles/base/_animations.scss b/src/styles/base/_animations.scss index 773bf1d..7dc0d25 100644 --- a/src/styles/base/_animations.scss +++ b/src/styles/base/_animations.scss @@ -136,3 +136,13 @@ color: var(--color-bg-tertiary); } } + +@keyframes fade-in { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} |
