codyhouse / codyhouse-framework

A lightweight front-end framework for building accessible, bespoke interfaces.
https://codyhouse.co/
MIT License
1.16k stars 171 forks source link

The sass-ie gulp task produces a faulty style-fallback.css when using the Auto Sized Grid component #89

Closed ghost closed 3 years ago

ghost commented 3 years ago

No other component was added, just the Auto Sized Grid.

screenshot

claudia-romano commented 3 years ago

Hi there, it looks like there's an issue when converting the following line of code to CSS:

gap: var(--gap-y, 0) var(--gap-x, 0);

You can replace that line with:

row-gap: var(--gap-y, 0);
column-gap: var(--gap-x, 0);

We'll update the component as soon as possible.

Cheers!