From e9c739f8036ce7545d39d66c87cf0c52eca0ba3f Mon Sep 17 00:00:00 2001 From: Jerry Jones Date: Fri, 9 Feb 2024 03:24:47 -0600 Subject: [PATCH] Fix buttons Unresponsive in Site Editor on Mobile Browsers and Apps (#58852) The site hub icon was full width at smaller screens, obstructing the icons in the toolbar from being clicked. --- packages/edit-site/src/components/layout/style.scss | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/packages/edit-site/src/components/layout/style.scss b/packages/edit-site/src/components/layout/style.scss index eabe9e6b5d7312..9be0b001ed9e25 100644 --- a/packages/edit-site/src/components/layout/style.scss +++ b/packages/edit-site/src/components/layout/style.scss @@ -19,15 +19,10 @@ } .edit-site-layout.is-full-canvas & { - padding-right: $grid-unit-20; + padding-right: 0; border-radius: 0; - width: 100vw; + width: $header-height; box-shadow: none; - - @include break-medium { - width: $header-height; - padding-right: 0; - } } }