added logo to login-page

This commit is contained in:
mkrieger 2024-11-14 10:30:13 +01:00
parent 6d24007b56
commit 81e906c01d
2 changed files with 27 additions and 1 deletions

View file

@ -296,3 +296,27 @@ tr:nth-child(even) td {
display: block;
margin-bottom: 1em;
}
.logo-container {
text-align: center;
margin-bottom: 1em;
}
.logo-container img {
max-width: 100%;
height: auto;
width: 150px; /* Standardbreite für das Logo */
transition: width 0.3s ease;
}
@media (max-width: 768px) {
.logo-container img {
width: 120px; /* Kleinere Breite auf kleineren Bildschirmen */
}
}
@media (max-width: 480px) {
.logo-container img {
width: 100px; /* Noch kleinere Breite auf sehr kleinen Bildschirmen */
}
}

File diff suppressed because one or more lines are too long