This commit is contained in:
2026-05-29 15:29:38 +02:00
parent 9db31d4b8c
commit 79efee0979
3 changed files with 16 additions and 8 deletions
+5 -5
View File
@@ -226,12 +226,12 @@ a, button, input, select, textarea, label, main{
/* --- RESPONSIVE DESIGN (MOBILGERÄTE) --- */ /* --- RESPONSIVE DESIGN (MOBILGERÄTE) --- */
@media (max-width: 760px) { @media (max-width: 760px) {
.form-page { .form-page {
justify-content: center !important; justify-content: center;
padding: 20px 10px !important; padding: 20px 10px;
} }
.form-container { .form-container {
flex: 0 1 auto !important; flex: 0 1 auto;
width: 100% !important; width: 100%;
max-width: 450px !important; max-width: 450px;
} }
} }
+8
View File
@@ -114,4 +114,12 @@ CSS für die Profilseite
width: 100%; width: 100%;
} }
/* Überschreibt das flex-grow der main.css und erzwingt zentrieren: */
.form-container {
flex: 0 1 auto !important;
width: 100% !important;
max-width: 450px !important;
margin: 0 auto 20px auto; /* zentrieren der Boxen */
}
} }
+3 -3
View File
@@ -69,12 +69,12 @@ CSS für die Suchergebnis-Seite
.s-res-filter-option input[type="radio"] { .s-res-filter-option input[type="radio"] {
margin: 0; margin: 0;
accent-color: #3182ce; /* Moderne Färbung des Radio-Buttons */ accent-color: #3182ce;
} }
/* --- HAUPTINHALT (ERGEBNISSE) --- */ /* --- HAUPTINHALT (ERGEBNISSE) --- */
.s-res-main-content { .s-res-main-content {
min-width: 0; /* Verhindert das Ausbrechen von Flex-Elementen */ min-width: 0;
} }
.s-res-header { .s-res-header {
@@ -164,7 +164,7 @@ CSS für die Suchergebnis-Seite
transform: translateX(3px); transform: translateX(3px);
} }
/* --- ERGEBNISSE PRO SEITE & PAGINIERUNG --- */ /* ERGEBNISSE PRO SEITE & PAGINIERUNG */
.s-res-pagination-footer { .s-res-pagination-footer {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;