mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
Properly center search box instead of having it slightly skewed
This commit is contained in:
parent
9d879d3931
commit
4b381062b1
1 changed files with 7 additions and 5 deletions
|
@ -167,10 +167,8 @@ body.fixed_navbar {
|
|||
}
|
||||
|
||||
nav {
|
||||
display: grid;
|
||||
grid-template-areas: "logo searchbox links";
|
||||
display: flex;
|
||||
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
color: var(--accent);
|
||||
|
@ -203,15 +201,18 @@ nav #code > svg {
|
|||
}
|
||||
|
||||
nav #logo {
|
||||
grid-area: logo;
|
||||
white-space: nowrap;
|
||||
margin-right: 5px;
|
||||
flex-grow: 1;
|
||||
flex-basis: 0;
|
||||
}
|
||||
|
||||
nav #links {
|
||||
grid-area: links;
|
||||
margin-left: 10px;
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
flex-basis: 0;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
nav #links svg {
|
||||
|
@ -1907,6 +1908,7 @@ th {
|
|||
}
|
||||
|
||||
nav {
|
||||
display: grid;
|
||||
grid-template-areas: "logo links" "searchbox searchbox";
|
||||
padding: 10px;
|
||||
width: calc(100% - 20px);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue