10 lines
106 B
SCSS
10 lines
106 B
SCSS
|
.grid-stack,
|
||
|
%grid-stack {
|
||
|
display: grid;
|
||
|
|
||
|
& > * {
|
||
|
grid-column: 1 / 2;
|
||
|
grid-row: 1 / 2;
|
||
|
}
|
||
|
}
|