Fix responsiveness of package grid on mobile

This commit is contained in:
rubenwardy
2023-08-14 22:01:01 +01:00
parent f7a5a1218f
commit 4a0653bcfd
3 changed files with 4 additions and 4 deletions

View File

@@ -268,9 +268,9 @@ pre {
grid-template-columns: repeat(2, 1fr);
}
.grid-4 {
.grid-250px {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.gap-2 {