mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 21:06:42 +07:00
fixed flow grid responsiveness
This commit is contained in:
parent
a6434399ba
commit
2b2234c3d8
1 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ $cols: $content_width / $cell;
|
||||||
.grid_test {
|
.grid_test {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fit, minmax($cell, 1fr));
|
grid-template-columns: repeat(auto-fit, minmax($cell, 1fr));
|
||||||
grid-template-rows: 360px;
|
grid-template-rows: $cell;
|
||||||
grid-auto-rows: $cell;
|
grid-auto-rows: $cell;
|
||||||
grid-auto-flow: row dense;
|
grid-auto-flow: row dense;
|
||||||
grid-column-gap: $grid_line;
|
grid-column-gap: $grid_line;
|
||||||
|
@ -22,8 +22,8 @@ $cols: $content_width / $cell;
|
||||||
.hero {
|
.hero {
|
||||||
grid-row-start: 1;
|
grid-row-start: 1;
|
||||||
grid-row-end: span 1;
|
grid-row-end: span 1;
|
||||||
grid-column-start: 0;
|
grid-column-start: 1;
|
||||||
grid-column-end: span 4;
|
grid-column-end: -1;
|
||||||
// gridRow: "1 / 2",
|
// gridRow: "1 / 2",
|
||||||
// gridColumn: "1 / -1",
|
// gridColumn: "1 / -1",
|
||||||
background: darken($content_bg, 2%);
|
background: darken($content_bg, 2%);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue