From 223e164ce8639ac2079d39bb04d7d03f9634ffed Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 4 Jan 2022 12:50:31 +0100 Subject: chore: add a back to top link --- src/styles/base/_animations.scss | 13 +++++++++++++ src/styles/globals.scss | 1 + 2 files changed, 14 insertions(+) create mode 100644 src/styles/base/_animations.scss (limited to 'src/styles') diff --git a/src/styles/base/_animations.scss b/src/styles/base/_animations.scss new file mode 100644 index 0000000..903645f --- /dev/null +++ b/src/styles/base/_animations.scss @@ -0,0 +1,13 @@ +@keyframes pulse { + from { + transform: scale(1); + } + + 50% { + transform: scale(0.8); + } + + to { + transform: scale(1); + } +} diff --git a/src/styles/globals.scss b/src/styles/globals.scss index 86e3ea8..0a7a618 100644 --- a/src/styles/globals.scss +++ b/src/styles/globals.scss @@ -14,6 +14,7 @@ * Define some standard styles and CSS variables (colors, fonts...). */ @use "base/base"; +@use "base/animations"; @use "base/colors"; @use "base/fonts"; @use "base/helpers"; -- cgit v1.2.3