bs-css
bs-css copied to clipboard
Statically typed DSL for writing css in reason.
Hi! First, thanks for this amazing library! I wanted to make a question about using the prepend option of emotion, or recently they've added an `insertionPoint` option, in order to...
Don't use 15.0.0, update has been made in Legacy instead of Js. Use 15.0.1
Hi There, Thanks for building the library! Wanted to check if CSS variables (e.g., `var(--background-color)`) are already supported?
Hi @giraud Currently `textDecoration` (https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration) supports only `textDecorationLine` (https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration) I'm not sure how to map a shorthand property that has been used as a single property, and the cleanest solution...
This PR adds a few values and properties that were missing. - [x] word-break: `break-word` - [x] calc(100px * 3) - [x] overflow-x: clip - [x] property_transform_box - [x] Parser.property_transition_property...
When I update the rescript version, the pipeline breaks while compiling bs-css. ```res Dependency on bs-css 07:21:38.090 | rescript: [1/21] src/Css_Core.ast 07:21:38.094 | rescript: [2/21] src/Css_Colors.ast 07:21:38.098 | rescript: [3/21]...
At the moment ``` CssJs.backgroundPositions([#right, #top]) ``` produces CSS ``` background-position: right, top; ``` I believe it should concatenate the values without a comma like this ``` background-position: right top;...
The support for `@container` queries was introduced in [@emotion/[email protected]](https://github.com/emotion-js/emotion/releases/tag/%40emotion%2Fstyled%4011.10.5)
In the calc function #substract should be #subtract. Or since we have #add, #mul, #div, maybe it should be #sub?