This commit is contained in:
2026-05-29 15:35:01 +02:00
parent 98683197e0
commit bd3d81e80c
2 changed files with 10 additions and 2 deletions
+9 -1
View File
@@ -106,8 +106,16 @@ CSS für die Profilseite
color: white; color: white;
} }
/* --- RESPONSIVE DESIGN (MOBILGERÄTE) --- */ /* Responsive Anpassungen unter 760px (für z.B. Smartphones) */
@media (max-width: 760px) { @media (max-width: 760px) {
.form-page {
display: flex !important;
flex-direction: column !important;
align-items: center !important;/* Block in die Mitte */
justify-content: center !important;
padding: 20px 10px !important;
}
.profile-layout-container { .profile-layout-container {
flex-direction: column !important; flex-direction: column !important;
align-items: center !important; align-items: center !important;
+1 -1
View File
@@ -247,7 +247,7 @@ CSS für die Suchergebnis-Seite
cursor: not-allowed; cursor: not-allowed;
} }
/* --- RESPONSIVE DESIGN (MOBILGERÄTE) --- */ /* Responsive Anpassungen unter 760px (für z.B. Smartphones) */
@media (max-width: 768px) { @media (max-width: 768px) {
.s-res-layout-grid { .s-res-layout-grid {
grid-template-columns: 1fr; /* Stapelt Seitenleiste und Inhalt untereinander */ grid-template-columns: 1fr; /* Stapelt Seitenleiste und Inhalt untereinander */