From 7e9ac064f7678e2f5295cefa3cfbebac02864817 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 13 Jul 2024 14:57:47 +0000 Subject: [PATCH] Fix bogus horizontal scroll bar --- index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 37764e6..78e7952 100644 --- a/index.html +++ b/index.html @@ -44,8 +44,8 @@ } .right { flex: 1 0 50%; - max-width: calc(50% + 15px); - min-width: calc(50% + 15px); + max-width: calc(50% + 14px); + min-width: calc(50% + 14px); order: 3; display: flex; flex-direction: column; @@ -66,6 +66,7 @@ .right-header-second-paragraph { padding: 20px 30px 0 30px; border-top: 1px solid #528080; + box-sizing: border-box; } .right-header { padding: 30px 0 20px 0 !important; -- 2.39.5