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
In scss/utils/_breakpoint.scss (see here) the variables like $small-up and $large-down are scoped only to the if statements in which they are defined.
The solution for this problem is to define the variable before the if statement (as null or an empty string), and then allow the if statement to give it the value desired.
This bug is blocking our organization from fully migrating off of Foundation 5
How to reproduce this bug:
Try to use the $small-up variable
What should happen:
The code should compile
What happened instead:
Undefined variable: "$small-up"
Foundation Version(s) you are using:
6.4, the issue goes back at least to 6.3
The text was updated successfully, but these errors were encountered:
In
scss/utils/_breakpoint.scss
(see here) the variables like$small-up
and$large-down
are scoped only to the if statements in which they are defined.The solution for this problem is to define the variable before the if statement (as null or an empty string), and then allow the if statement to give it the value desired.
This bug is blocking our organization from fully migrating off of Foundation 5
How to reproduce this bug:
$small-up
variableWhat should happen:
The code should compile
What happened instead:
Undefined variable: "$small-up"
Foundation Version(s) you are using:
6.4, the issue goes back at least to 6.3
The text was updated successfully, but these errors were encountered: