responsive

This commit is contained in:
Chneemann 2024-04-28 19:20:57 +02:00
parent 907075e31b
commit 469c6f1eb6
2 changed files with 48 additions and 1 deletions

View file

@ -23,3 +23,15 @@
}
}
}
@media (max-height: 820px) {
.footer {
margin-bottom: 24x;
}
}
@media (max-height: 550px) {
.footer {
margin-bottom: 12px;
}
}

View file

@ -105,10 +105,12 @@ section {
}
.error-msg {
display: flex;
align-items: center;
justify-content: center;
height: 24px;
padding: 6px;
width: 120%;
text-align: center;
p {
color: var(--red);
font-size: 12px !important;
@ -133,6 +135,23 @@ section {
font-size: 47px;
}
}
.register {
top: unset;
right: unset;
left: 0;
bottom: 99px;
display: flex;
justify-content: center;
width: 100%;
}
.logo {
left: 38px;
top: 37px;
height: 64px;
width: 78px;
}
}
@media screen and (max-width: 450px) {
@ -150,8 +169,24 @@ section {
}
.error-msg {
height: 18px;
p {
font-size: 10px !important;
}
}
}
@media (max-height: 820px) {
.content {
top: 40%;
}
.logo {
display: none;
}
}
@media (max-height: 550px) {
.content {
top: 45%;
}
}