summaryrefslogtreecommitdiffstats
path: root/src/wwwroot/styles/login.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/wwwroot/styles/login.scss')
-rw-r--r--src/wwwroot/styles/login.scss36
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;
+ }
+}