mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 23:48:56 +01:00
Use repeat rather than manually specify auto in grid-template-rows
Co-authored-by: Debanjum <debanjum@gmail.com>
This commit is contained in:
parent
3d6e8d53fe
commit
d697d752c2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue