-
Hi again, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The instead of using .grid-canvas {
.slick-row {
&:hover {
background-color: unset;
}
}
} Also note that I use CSS variable fallback for the SASS variable, so if you set the CSS variable it would win over a SASS variable, if you set it on the :root {
--slick-row-mouse-hover-color: unset;
} You can try any of that, I didn't test any of them |
Beta Was this translation helpful? Give feedback.
Thanks @ghiscoding
This finally worked:
Notes:
unset
does not work since there are some calculations in CSS.transparent
and!important
: