diff options
| author | ivar <i@oiee.no> | 2025-10-19 23:41:23 +0200 |
|---|---|---|
| committer | ivar <i@oiee.no> | 2025-10-19 23:41:23 +0200 |
| commit | 3f4c0720e1e3421431e7baa20882a4a4512a7fab (patch) | |
| tree | 734ca81d7d0841d8863e3f523ebba14c282dc681 /src/wwwroot/styles/login.scss | |
| download | fagprove-master.tar.xz fagprove-master.zip | |
Diffstat (limited to 'src/wwwroot/styles/login.scss')
| -rw-r--r-- | src/wwwroot/styles/login.scss | 36 |
1 files changed, 36 insertions, 0 deletions
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; + } +} |
