From 96beb87b16de6c02660fb7a02515be43db0f16d7 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 8 Dec 2024 13:13:19 -0500 Subject: Fixed Firefox issue when content flashes when moving page; Thanks martrapp! --- src/styles/Page.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/styles') diff --git a/src/styles/Page.css b/src/styles/Page.css index 2a8f877..59aea44 100644 --- a/src/styles/Page.css +++ b/src/styles/Page.css @@ -25,3 +25,20 @@ h2.header-text { margin: 10px 20px 10px 20px; } } + +@keyframes astroFadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } + } + @keyframes astroFadeOut { + from { + opacity: 1; + } + to { + opacity: 0; + } + } \ No newline at end of file -- cgit v1.2.3