Match spacing of navigation header pane in config vs search/chat pages

This commit is contained in:
Debanjum Singh Solanky
2023-11-01 12:55:05 -07:00
parent 2e3a4a6a9b
commit 7ac5a4766d
2 changed files with 12 additions and 1 deletions

View File

@@ -146,9 +146,9 @@ img.circle {
width: 40px; width: 40px;
height: 40px; height: 40px;
vertical-align: text-top; vertical-align: text-top;
padding: 3px;
} }
@media screen and (max-width: 700px) { @media screen and (max-width: 700px) {
.khoj-nav-dropdown-content { .khoj-nav-dropdown-content {
display: block; display: block;

View File

@@ -38,6 +38,14 @@
display: grid; display: grid;
grid-template-columns: 1fr min(70vw, 100%) 1fr; grid-template-columns: 1fr min(70vw, 100%) 1fr;
} }
.khoj-header {
padding: 14px 0;
}
img.circle {
width: 49px;
height: 49px;
}
.page { .page {
display: grid; display: grid;
grid-auto-flow: row; grid-auto-flow: row;
@@ -263,6 +271,9 @@
div.khoj-header-wrapper{ div.khoj-header-wrapper{
grid-template-columns: auto; grid-template-columns: auto;
} }
div.khoj-header {
padding: 14px 10px;
}
} }
</style> </style>