LabCodeHub öffentliche Ansicht
Anmelden
Küpper / Quildrop öffentlich

fix: responsive menu

R Rüdiger Küpper <rpr@9it.de> committete am 19.02.2026 00:16
7b6ee73596304baad36ff1c5e70a363361325fd1
1 geänderte Datei(en) +14 −2
Kontextzeilen: 0 1 2 3 10
geändert static/css/style.css
+14 −2 Datei ansehen
@@ -1109,9 +1109,13 @@ body {
1109 1109
        bottom: 0;
1110 1110
        background: var(--bg-primary);
1111 +
        opacity: 1;
1111 1112
        flex-direction: column;
1112 1113
        align-items: center;
1113 -
        justify-content: center;
1114 -
        gap: 1.8rem;
1114 +
        justify-content: flex-start;
1115 +
        gap: 1.5rem;
1116 +
        padding: 5rem 2rem 2rem;
1115 1117
        z-index: 105;
1118 +
        overflow-y: auto;
1119 +
        -webkit-overflow-scrolling: touch;
1116 1120
    }
1117 1121
@@ -1123,4 +1127,5 @@ body {
1123 1127
    .nav-dropdown-toggle {
1124 1128
        font-size: 1.2rem;
1129 +
        color: var(--text-primary);
1125 1130
    }
1126 1131
@@ -1147,4 +1152,5 @@ body {
1147 1152
        padding: 0.4rem 0;
1148 1153
        font-size: 1rem;
1154 +
        color: var(--text-secondary);
1149 1155
    }
1150 1156
@@ -1160,4 +1166,5 @@ body {
1160 1166
        right: 1rem;
1161 1167
        width: auto;
1168 +
        z-index: 110;
1162 1169
    }
1163 1170
@@ -1165,4 +1172,9 @@ body {
1165 1172
        max-height: calc(100vh - 10rem);
1166 1173
    }
1174 +
1175 +
    .nav-rss,
1176 +
    #theme-toggle {
1177 +
        color: var(--text-primary);
1178 +
    }
1167 1179
}
1168 1180