mirror of
https://github.com/khoj-ai/khoj.git
synced 2025-02-17 16:14:21 +00:00
Constrain grid rows to fix layout of Khoj web interface on Chrome
This commit is contained in:
parent
a31002bf38
commit
3e63af5c94
1 changed files with 2 additions and 0 deletions
|
@ -195,6 +195,7 @@
|
||||||
body {
|
body {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
|
grid-template-rows: 1fr 1fr 1fr minmax(80px, 100%);
|
||||||
}
|
}
|
||||||
body > * {
|
body > * {
|
||||||
grid-column: 1;
|
grid-column: 1;
|
||||||
|
@ -204,6 +205,7 @@
|
||||||
body {
|
body {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr min(70vw, 100%) 1fr;
|
grid-template-columns: 1fr min(70vw, 100%) 1fr;
|
||||||
|
grid-template-rows: 1fr 1fr 1fr minmax(80px, 100%);
|
||||||
padding-top: 60vw;
|
padding-top: 60vw;
|
||||||
}
|
}
|
||||||
body > * {
|
body > * {
|
||||||
|
|
Loading…
Add table
Reference in a new issue