I currently have some SASS I'm trying to convert to use bs-css
(7.3).
The sass looks like
.checkbox {
svg {
height: 28px;
width: 28px;
}
}
I've tried using
open Css;
let checkbox =
style([
backgroundColor(Basics.Colors.white),
border(`px(1), `solid, Basics.Colors.gray850),
selector(
"svg",
[height(Basics.Icon.epsilon), width(Basics.Icon.epsilon)],
),
]);
But I get back the css property svg
set to [Object Object]