feat(layout): stretch single grid lists

This commit is contained in:
Rafael Bardini 2022-03-08 13:02:56 +01:00
parent a963bf3e64
commit 503e2aa320
2 changed files with 8 additions and 2 deletions

View File

@ -245,6 +245,9 @@ blockquote > * + * {
}
.grid-list {
grid-template-columns: 1fr 1fr;
grid-template-columns: repeat(
auto-fit,
minmax(calc((100% - 1em) / 2), 1fr)
);
}
}

View File

@ -261,7 +261,10 @@ blockquote > * + * {
}
.grid-list {
grid-template-columns: 1fr 1fr;
grid-template-columns: repeat(
auto-fit,
minmax(calc((100% - 1em) / 2), 1fr)
);
}
}
</style>