mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-02 21:19:12 +00:00
- Move the nav menu into the chat history side panel component, so that they both show up on one line - Update all pages to use it with the new formatting - in mobile, present the sidebar button, home button, and profile button evenly centered in the middle
23 lines
328 B
CSS
23 lines
328 B
CSS
div.searchLayout {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 1rem;
|
|
height: 100vh;
|
|
}
|
|
|
|
div.sidePanel {
|
|
position: fixed;
|
|
height: 100%;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
div.searchLayout {
|
|
gap: 0;
|
|
}
|
|
|
|
div.sidePanel {
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
}
|