You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm starting an early attempt to upgrade our implementation of Column Setter to v2. I tried copying in the new versions without changing anything else just to see what would happen:
Deprecated / for division
Sass doesn't allow using / to divide anymore, but they do have some good resources, including an automatic upgrader.
When I change it to $max-width: 80em; the error goes away and the CSS compiles without complaint. I haven't gone through to see what design implications this might have for us, but I thought you might want to change the docs if $max-width: null; is no longer supported.
The text was updated successfully, but these errors were encountered:
I'm starting an early attempt to upgrade our implementation of Column Setter to v2. I tried copying in the new versions without changing anything else just to see what would happen:
Deprecated / for division
Sass doesn't allow using
/
to divide anymore, but they do have some good resources, including an automatic upgrader.As far as I can tell, running these commands on Column Setter works fine.
Invalid max-width
I've previously had
$max-width: null;
in my settings, as shown in the example. In v2, this causes this error:When I change it to
$max-width: 80em;
the error goes away and the CSS compiles without complaint. I haven't gone through to see what design implications this might have for us, but I thought you might want to change the docs if$max-width: null;
is no longer supported.The text was updated successfully, but these errors were encountered: