aboutsummaryrefslogtreecommitdiff
path: root/src/styles
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2024-12-08 13:13:19 -0500
committerAndrew Lee <andrew@alee14.me>2024-12-08 13:13:19 -0500
commit96beb87b16de6c02660fb7a02515be43db0f16d7 (patch)
tree37b416be48553426970838f73ddc08817f407888 /src/styles
parent09f88d5caac03db10e4cb91f0aac3710e31c8c2c (diff)
downloadpersonal-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/styles')
-rw-r--r--src/styles/Page.css17
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