Merge pull request #346 from StroepWafel/Fix-dropdowns

fix: Drop down menu styling
This commit is contained in:
Seth Burkart
2025-09-15 11:20:32 +10:00
committed by GitHub
2 changed files with 33 additions and 2 deletions
+15
View File
@@ -38,6 +38,21 @@ body,
html {
font-family: Rubik, sans-serif !important;
}
/* Ensure native select dropdowns are readable on Windows */
select option {
background-color: #ffffff !important;
color: #111827 !important;
}
.dark select option {
background-color: #1f2937 !important;
color: #ffffff !important;
}
/* Consistent rounded corners for selects */
select {
border-radius: 8px !important;
}
#container {
transition: 200ms;
background: var(--auto-background) !important;