summaryrefslogtreecommitdiff
path: root/WebInterface/NodeJSServer/src/style/partials
diff options
context:
space:
mode:
Diffstat (limited to 'WebInterface/NodeJSServer/src/style/partials')
-rw-r--r--WebInterface/NodeJSServer/src/style/partials/modal/_base.scss2
-rw-r--r--WebInterface/NodeJSServer/src/style/partials/modal/_login.scss6
2 files changed, 6 insertions, 2 deletions
diff --git a/WebInterface/NodeJSServer/src/style/partials/modal/_base.scss b/WebInterface/NodeJSServer/src/style/partials/modal/_base.scss
index 1665003..006c241 100644
--- a/WebInterface/NodeJSServer/src/style/partials/modal/_base.scss
+++ b/WebInterface/NodeJSServer/src/style/partials/modal/_base.scss
@@ -15,7 +15,7 @@
}
.modal {
- background-color: $secondary;
+ background-color: $primary;
margin: auto;
padding: 1rem;
border-style: none;
diff --git a/WebInterface/NodeJSServer/src/style/partials/modal/_login.scss b/WebInterface/NodeJSServer/src/style/partials/modal/_login.scss
index 7aa1bf8..eed978f 100644
--- a/WebInterface/NodeJSServer/src/style/partials/modal/_login.scss
+++ b/WebInterface/NodeJSServer/src/style/partials/modal/_login.scss
@@ -7,7 +7,7 @@
.modal-body {
display: grid;
grid-template-columns: 10em 1fr;
- grid-template-rows: 1fr 1fr;
+ grid-template-rows: 1fr 1fr 1fr;
grid-row-gap: 0.5rem;
div {
@@ -25,6 +25,10 @@
flex-basis: calc(70% - 2rem);
grid-column: 2 3;
}
+
+ button {
+ grid-column: 1 / 3;
+ }
}
}
}