fix(ui): give settings drill-in chevrons currentColor stroke so they stay visible in dark mode (#110446)

This commit is contained in:
Peter Steinberger
2026-07-18 06:45:48 +01:00
committed by GitHub
parent 538a3826c7
commit bd4714a042

View File

@@ -268,6 +268,13 @@
.settings-row__chevron svg {
width: 14px;
height: 14px;
/* Icons rely on currentColor; without this the SVG falls back to black fill
and disappears in dark mode. */
stroke: currentColor;
fill: none;
stroke-width: 2px;
stroke-linecap: round;
stroke-linejoin: round;
}
/* Indented child rows (e.g. per-item options under a parent toggle). */