From 6c1041cedb1391890ffe3ce953d00e83fe497086 Mon Sep 17 00:00:00 2001 From: Peter Zimon Date: Fri, 2 Oct 2020 15:20:08 +0200 Subject: [PATCH] Fix back button spacing --- ghost/portal/src/components/common/BackButton.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ghost/portal/src/components/common/BackButton.js b/ghost/portal/src/components/common/BackButton.js index 3b6c503f8a..90f3d38a9a 100644 --- a/ghost/portal/src/components/common/BackButton.js +++ b/ghost/portal/src/components/common/BackButton.js @@ -9,7 +9,7 @@ export const BackButtonStyles = ` height: unset; min-width: unset; position: absolute; - top: -2px; + top: -3px; left: -16px; background: none; padding: 8px; @@ -25,8 +25,10 @@ export const BackButtonStyles = ` } .gh-portal-btn-back svg { - width: 16px; - height: 16px; + width: 17px; + height: 17px; + margin-top: 1px; + margin-right: 2px; } `;