Use repeat rather than manually specify auto in grid-template-rows

Co-authored-by: Debanjum <debanjum@gmail.com>
This commit is contained in:
sabaimran 2023-11-05 15:23:42 -08:00 committed by GitHub
parent 3d6e8d53fe
commit d697d752c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -301,7 +301,7 @@
body {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr auto auto auto auto;
grid-template-rows: 1fr repeat(4, auto);
}
body > * {
grid-column: 1;