mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-04 13:20:17 +00:00
Use new nav menu alignment in the settings page
This commit is contained in:
committed by
Debanjum Singh Solanky
parent
b1d3979ed9
commit
9c5ff1699a
@@ -1,6 +1,6 @@
|
||||
div.page {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 1rem;
|
||||
height: 100vh;
|
||||
color: hsla(var(--foreground));
|
||||
@@ -8,15 +8,35 @@ div.page {
|
||||
div.contentBody {
|
||||
display: grid;
|
||||
margin: auto;
|
||||
margin-left: 20vw;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
div.phoneInput {
|
||||
padding: 0rem;
|
||||
}
|
||||
|
||||
div.sidePanel {
|
||||
position: fixed;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
div.phoneInput input {
|
||||
width: 100%;
|
||||
padding: 0.5rem;
|
||||
border: 1px solid hsla(var(--border));
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
|
||||
div.sidePanel {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
div.contentBody {
|
||||
margin-left: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user