From cc047dd867a6c5f5df074d81252931764ee5c45c Mon Sep 17 00:00:00 2001 From: popovskik Date: Fri, 31 Jul 2026 21:20:17 +0200 Subject: [PATCH] Fix route builder: remove stray hero border line and bottom-align field labels Co-Authored-By: Claude Opus 4.8 (1M context) --- css/pages/_guide.css | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/css/pages/_guide.css b/css/pages/_guide.css index 6e6c6ed3..c3356587 100644 --- a/css/pages/_guide.css +++ b/css/pages/_guide.css @@ -207,7 +207,6 @@ .guide-landing { font-family: 'Inter', sans-serif; } .guide-landing-hero { background: linear-gradient(180deg, #F5FAFB 0%, #FFFFFF 100%); - border-bottom: 1px solid #EAECF0; padding: 72px 24px 56px; text-align: center; } @@ -619,10 +618,19 @@ .guide-route-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); - gap: 14px; + gap: 14px 16px; + align-items: end; +} +.guide-field { display: flex; flex-direction: column; gap: 6px; justify-content: flex-end; } +.guide-field label { + font-size: 13px; + font-weight: 600; + color: #344054; + line-height: 1.3; + min-height: calc(2 * 1.3em); + display: flex; + align-items: flex-end; } -.guide-field { display: flex; flex-direction: column; gap: 6px; } -.guide-field label { font-size: 13px; font-weight: 600; color: #344054; } .guide-field select { appearance: none; -webkit-appearance: none;