From 0fe49cf5a90ceebec3bc2df9581ee2d37a9da050 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Wed, 16 Aug 2023 21:47:28 -0700 Subject: [PATCH] Pre-flush --- src/common/theme.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/common/theme.ts b/src/common/theme.ts index 6cc8cd17c..c4fecd97c 100644 --- a/src/common/theme.ts +++ b/src/common/theme.ts @@ -115,6 +115,17 @@ export const cssRainbowColorKeyframes = keyframes` color: rgb(204, 0, 102); }`; +export const cssScaleKeyframes = keyframes` + 0% { + transform: scale(1); + } + 50% { + transform: scale(1.2); + } + 100% { + transform: scale(1); + }`; + // Emotion Cache (with insertion point on the SSR pass)