From 4b381062b1c9ae5981316d06bd4befe6f84fa13f Mon Sep 17 00:00:00 2001 From: Butter Cat Date: Fri, 26 Jul 2024 17:47:47 -0400 Subject: [PATCH] Properly center search box instead of having it slightly skewed --- static/style.css | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/static/style.css b/static/style.css index 24d32e9..cbddef8 100644 --- a/static/style.css +++ b/static/style.css @@ -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);