Skip to content
Snippets Groups Projects
Unverified Commit 34ebffa9 authored by Oleg Gromov's avatar Oleg Gromov Committed by GitHub
Browse files

Fix colors in Mantine select (#37660)

parent 672b07e9
No related branches found
No related tags found
No related merge requests found
......@@ -133,6 +133,10 @@ export const getSelectItemsOverrides = (
color: theme.fn.themeColor("brand"),
backgroundColor: theme.fn.themeColor("brand-lighter"),
},
"&[data-selected]": {
color: theme.fn.themeColor("text-white"),
backgroundColor: theme.fn.themeColor("brand"),
},
"&[data-disabled]": {
color: theme.fn.themeColor("text-light"),
},
......
......@@ -23,6 +23,7 @@ const ORIGINAL_COLORS = [
const CUSTOM_COLORS = [
"brand",
"brand-lighter",
"text-white",
"text-light",
"text-medium",
"text-dark",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment