fix(dashboard): theme ReactFlow Controls +/- buttons for dark mode

This commit is contained in:
Apostol Apostolov
2026-05-29 21:52:14 +03:00
committed by diegosouzapw
parent c3e5f2de6f
commit 8a409fcad3

View File

@@ -412,3 +412,18 @@ select option {
background-color: var(--color-surface);
color: var(--color-text-main);
}
/* ReactFlow Controls (zoom +/- buttons) dark mode theming */
.react-flow__controls-button {
background-color: var(--color-surface);
border-bottom-color: var(--color-border);
fill: var(--color-text-main);
}
.react-flow__controls-button:hover {
background-color: var(--color-bg-subtle);
}
.react-flow__controls-button svg {
fill: var(--color-text-main);
}