From fa3e08d2d5cb071ddbfbb66a05e72a34e0fdfb40 Mon Sep 17 00:00:00 2001 From: Jerry Jones Date: Thu, 8 Feb 2024 11:23:16 -0600 Subject: [PATCH] Edit mode site hub icon should always be 60px wide 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; - } } }