diff options
-rw-r--r-- | server/src/routes/ui/layout.rs | 3 | ||||
-rw-r--r-- | server/src/routes/ui/style/layout.css | 10 |
2 files changed, 13 insertions, 0 deletions
diff --git a/server/src/routes/ui/layout.rs b/server/src/routes/ui/layout.rs index fe8f789..03fae09 100644 --- a/server/src/routes/ui/layout.rs +++ b/server/src/routes/ui/layout.rs @@ -44,6 +44,9 @@ markup::define! { } } #main { @main } + footer { + p { @CONF.brand " - " @CONF.slogan " | powered by Jellything" } + } } } } diff --git a/server/src/routes/ui/style/layout.css b/server/src/routes/ui/style/layout.css index 0c0e906..3332460 100644 --- a/server/src/routes/ui/style/layout.css +++ b/server/src/routes/ui/style/layout.css @@ -34,6 +34,7 @@ body { width: 100vw; margin: 0px; padding: 0px; + min-height: 100vh; } nav { @@ -95,3 +96,12 @@ nav .account { color: rgb(255, 117, 117); font-family: monospace; } + +footer { + padding: 0.1em; + text-align: center; +} +footer p { + color: #828282; + font-size: 0.8em; +} |