From 5795ca89e3cbf704b7822c8cc386b3fceb5410ff Mon Sep 17 00:00:00 2001 From: Aditya Sharma <130918775+adityadewhy@users.noreply.github.com> Date: Fri, 14 Jul 2023 02:10:27 +0530 Subject: [PATCH] fixed the presence of horizontal scrollbar fix: in styles.css .container{ // change overflow-x: none; to overflow-x : hidden; } --- lecture26/styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lecture26/styles.css b/lecture26/styles.css index 2fab356..5b82982 100644 --- a/lecture26/styles.css +++ b/lecture26/styles.css @@ -6,7 +6,7 @@ .container{ height: 100%; width: 100%; - overflow-x: none; + overflow-x: hidden; background-color: #e2e5e8; background-image: linear-gradient(98deg, #e2e5e8 0%, #ffffff 100%); @@ -149,4 +149,4 @@ footer{ .rightBox .overlay span{ color: white; font-size: 1.2rem; -} \ No newline at end of file +}