diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-08-31 12:31:25 -0400 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-08-31 12:31:25 -0400 |
commit | e9b9cd2cd88e453a3a35cf3f672ba965660b9ff2 (patch) | |
tree | df34e0aa8ffbc51fc14cbb1065437ba87e7b490f /src/pages/Graph.css | |
parent | 3ce7ae5c53705c213b293bb7bca833b066c14d6a (diff) |
Update the dashboard with a message about the lack of any dashboards
Diffstat (limited to 'src/pages/Graph.css')
-rw-r--r-- | src/pages/Graph.css | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/pages/Graph.css b/src/pages/Graph.css deleted file mode 100644 index 8cb98ee..0000000 --- a/src/pages/Graph.css +++ /dev/null @@ -1,33 +0,0 @@ -.Title { - font-size: 2em; - margin-top: 24px; -} - -.ToTheMoon { - -webkit-animation-duration: 0.5s; - animation-duration: 0.5s; - -webkit-animation-delay: 1.5s; - animation-delay: 1.5s; - -webkit-animation-fill-mode: both; - animation-fill-mode: both; - -webkit-animation-name: fadeIn; - animation-name: fadeIn; -} - -@-webkit-keyframes fadeIn { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} - -@keyframes fadeIn { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} |