From 3f4c0720e1e3421431e7baa20882a4a4512a7fab Mon Sep 17 00:00:00 2001 From: ivar Date: Sun, 19 Oct 2025 23:41:23 +0200 Subject: Initial --- src/wwwroot/styles/login.scss | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/wwwroot/styles/login.scss (limited to 'src/wwwroot/styles/login.scss') diff --git a/src/wwwroot/styles/login.scss b/src/wwwroot/styles/login.scss new file mode 100644 index 0000000..c8b19fa --- /dev/null +++ b/src/wwwroot/styles/login.scss @@ -0,0 +1,36 @@ +@import "core"; + +main { + height: 100vh; + max-width: 450px; + margin: 0 auto; + padding-top: 25px; +} + +.header { + pointer-events: none; + user-select: none; + display: flex; + + .image { + justify-self: center !important; + max-width: 300px !important; + width: unset !important; + } +} + +footer { + width: 100%; + height: 80px; + display: flex; + justify-content: center; + position: absolute; + align-items: center; + bottom: 0; +} + +@media(max-width: 457px) { + main { + padding-top: 0; + } +} -- cgit v1.3