fix: Drop down menu styling

Fix for drop down menu styling so it doesn't look abhorrent
This commit is contained in:
StroepWafel
2025-09-12 15:50:24 +09:30
parent cdc8062275
commit c3c747d996
2 changed files with 43 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;