diff options
| author | Andrew Lee <andrew@alee14.me> | 2024-12-08 13:13:19 -0500 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2024-12-08 13:13:19 -0500 |
| commit | 96beb87b16de6c02660fb7a02515be43db0f16d7 (patch) | |
| tree | 37b416be48553426970838f73ddc08817f407888 /src | |
| parent | 09f88d5caac03db10e4cb91f0aac3710e31c8c2c (diff) | |
| download | personal-website-96beb87b16de6c02660fb7a02515be43db0f16d7.tar.gz personal-website-96beb87b16de6c02660fb7a02515be43db0f16d7.tar.bz2 personal-website-96beb87b16de6c02660fb7a02515be43db0f16d7.zip | |
Fixed Firefox issue when content flashes when moving page; Thanks martrapp!
Diffstat (limited to 'src')
| -rw-r--r-- | src/styles/Page.css | 17 |
1 files changed, 17 insertions, 0 deletions
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 |
