fix(style): fix illegible theme select dropdown in light mode

Targets the select and option elements within starlight-theme-select to apply the primary colour and background, preventing white-on-white text in the dropdown.
This commit is contained in:
2026-03-03 17:05:28 -08:00
committed by Naomi Carrigan
parent 99aadc3987
commit 3fcbc5d7b4
+10
View File
@@ -124,6 +124,16 @@ starlight-theme-select > label {
color: var(--primary-color) !important;
}
starlight-theme-select select {
color: var(--primary-color) !important;
background-color: var(--background-color) !important;
}
starlight-theme-select select option {
color: var(--primary-color);
background-color: var(--background-color);
}
.social-icons::after {
display: none;
}