Merge branch 'master' into fix-mobile-width

This commit is contained in:
Hannes Heine 2023-01-19 11:42:49 +01:00 committed by GitHub
commit e2ad6d0fe9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,6 +53,7 @@ export default {
.auth-header { .auth-header {
font-family: 'Open Sans', sans-serif !important; font-family: 'Open Sans', sans-serif !important;
height: 150px;
} }
.sheet-img { .sheet-img {
@ -61,6 +62,17 @@ export default {
max-width: 64%; max-width: 64%;
} }
@media screen and (max-width: 1024px) {
.auth-header {
height: 100px;
}
}
@media screen and (max-width: 768px) {
.auth-header {
height: 70px;
}
}
@media screen and (max-width: 450px) { @media screen and (max-width: 450px) {
.sheet-img { .sheet-img {
top: -15px; top: -15px;