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 ?
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