fix issue with templates showing over more than two rows
This commit is contained in:
parent
d8c44be3c3
commit
a9d7a19cb5
|
@ -474,9 +474,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.grid {
|
.grid {
|
||||||
|
height: 200px;
|
||||||
display: grid;
|
display: grid;
|
||||||
|
overflow: hidden;
|
||||||
grid-gap: var(--spacing-xl);
|
grid-gap: var(--spacing-xl);
|
||||||
grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
|
||||||
|
grid-template-rows: minmax(100px, 1fr) minmax(100px, 1fr) minmax(0px, 0);
|
||||||
}
|
}
|
||||||
.template-card {
|
.template-card {
|
||||||
height: 80px;
|
height: 80px;
|
||||||
|
|
Loading…
Reference in New Issue