1
0
forked from noxious/client

Adjustments button styling and login screen

This commit is contained in:
2024-06-10 21:23:50 +02:00
parent 58bff2010f
commit 6aa8853aa9
2 changed files with 10 additions and 10 deletions

View File

@ -133,7 +133,7 @@ async function registerFunc() {
background-color: rgba($white, 0.5);
border-radius: 3px;
border: $light-gray 1px solid;
min-width: 400px;
min-width: 500px;
margin: 0 auto;
label {
@ -158,10 +158,10 @@ async function registerFunc() {
.row-buttons {
display: flex;
justify-content: center;
gap: 8px;
gap: 15px;
.button {
padding: 10px 0;
padding: 8px 0;
min-width: 100px;
span {
@ -175,12 +175,7 @@ async function registerFunc() {
.main-title {
margin-top: 115px;
text-align: center;
font-size: 3rem;
text-shadow:
-1px -1px 0 $gray,
1px -1px 0 $gray,
-1px 1px 0 $gray,
1px 1px 0 $gray;
font-size: 4rem;
}
a {
@ -188,7 +183,7 @@ async function registerFunc() {
}
// Mobile screens (< 450px)
@media screen and (max-width: 450px) {
@media screen and (max-width: 550px) {
.content-wrapper {
.content-elements {
.login-form {
@ -197,6 +192,9 @@ async function registerFunc() {
min-width: unset;
}
}
.row-buttons {
gap: 8px;
}
}
}
}