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 will close this as it seems an issue with @nuxtjs/vuetify package as they are using "sass": "1.32.13".
Overriding the sass package to 1.33.0 or higher version fixes this issue. Possibly due to #1312
Here's the hacky fix for those using @nuxtjs/vuetify module, include this in package.json:
We use a a 48-col grid, and we built it using sass, and we have this rule
It is compiled to css as
Mathematically, 36 * 2.083333333333 is 75 not 74
Syntactically,
74.%
is not a valid property value in css, it should be either74%
or74.0%
Using sass@1.62.1 (on a nuxt project)
Side notes:
The text was updated successfully, but these errors were encountered: