mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-03 05:29:12 +00:00
13 lines
198 B
CSS
13 lines
198 B
CSS
div.searchLayout {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
gap: 1rem;
|
|
height: 100vh;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
div.searchLayout {
|
|
gap: 0;
|
|
}
|
|
}
|