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 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/styles/base/_animations.scss (limited to 'src/styles/base') 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); + } +} -- cgit v1.2.3