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
Very nice tool for people like me that are new to grid system.
However, I have a small suggestion. I use SCSS as a standard processor for my css. When I do something like this :
.div1 { grid-area: 2 / 3 / 4 / 5; }
It calculate the values. To force SCSS to just consider this as a string, I have to do :
.div1 { grid-area: {#"2 / 3 / 4 / 5"}; }
Like this, it works well.
Would ie be possible to add a small option in your tool : "display code as SCSS" and add that syntax to be able to do a quick copy / paste without adding manually this syntax when you use SCSS processor ?
Thank you
The text was updated successfully, but these errors were encountered:
Hello,
Very nice tool for people like me that are new to grid system.
However, I have a small suggestion. I use SCSS as a standard processor for my css. When I do something like this :
It calculate the values. To force SCSS to just consider this as a string, I have to do :
Like this, it works well.
Would ie be possible to add a small option in your tool : "display code as SCSS" and add that syntax to be able to do a quick copy / paste without adding manually this syntax when you use SCSS processor ?
Thank you
The text was updated successfully, but these errors were encountered: