-
Notifications
You must be signed in to change notification settings - Fork 756
Closed
Labels
css-nesting-1Current WorkCurrent Work
Description
In a current project
https://tobireif.com/demos/grid/
I have to write ".layout1" many times:
.layout1 .page {
grid-template-rows: repeat(3, auto) 1fr;
grid-template-columns: 1.14fr 1fr;
}
.layout1 .page .heading {
grid-row: 2;
grid-column: 1;
}
/* many more times */
Having something like Sass's Nesting
https://sass-lang.com/guide#topic-3
would allow me to write the string ".layout1" only once (ditto for the string ".layout2" and ".layout3").
Metadata
Metadata
Assignees
Labels
css-nesting-1Current WorkCurrent Work