From 13281f610d1ce2bd5a26e4b9ba49a4b2db55d836 Mon Sep 17 00:00:00 2001 From: Dave Martin Date: Wed, 4 Dec 2024 13:09:21 -0500 Subject: [PATCH] Recent Feed Overhaul - Remove extra padding in mobile view (#97059) * Remove extra padding * Only change 600px and smaller --- client/reader/style.scss | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/client/reader/style.scss b/client/reader/style.scss index be3cfe4944b15..595511733c373 100644 --- a/client/reader/style.scss +++ b/client/reader/style.scss @@ -22,10 +22,14 @@ body.is-section-reader { } @media only screen and (max-width: 781px) { - div.layout.is-global-sidebar-visible { - .layout__primary { - overflow-x: auto; - } + div.layout.is-global-sidebar-visible .layout__primary { + overflow-x: auto; + } + } + + @media only screen and (max-width: 600px) { + div.layout.is-global-sidebar-visible .main { + padding: 24px 0; } } }