diff options
| author | real-zephex <[email protected]> | 2024-03-27 12:40:52 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-27 12:40:52 +0530 |
| commit | 684a5a6d65a1badc2fadeefdc941d9070aa04f9d (patch) | |
| tree | 3b2fb0cc0dfe3b49b4ea2dfcef11e70952ebd52d /src/app/globals.css | |
| parent | restructured files (diff) | |
| download | dramalama-684a5a6d65a1badc2fadeefdc941d9070aa04f9d.tar.xz dramalama-684a5a6d65a1badc2fadeefdc941d9070aa04f9d.zip | |
fixes: minor css fixes, added loading indicators, added error pages etc etc
Diffstat (limited to 'src/app/globals.css')
| -rw-r--r-- | src/app/globals.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/app/globals.css b/src/app/globals.css index a76fc50..c0273da 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -48,6 +48,25 @@ body::-webkit-scrollbar { margin-left: 10px; } +.ErrorContainer { + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + height: 90dvh; + color: white; + font-family: "Kanit"; + font-size: 20px; +} + +.ErrorContainer button { + border-radius: 5px; + padding: 3px; + font-family: "Lato"; + border: 0; + outline: 0; +} + @media (prefers-color-scheme: dark) { body { background-color: black; |