From 800283c9e834461621e204c434da2dd20a4159d2 Mon Sep 17 00:00:00 2001 From: John Godley Date: Tue, 24 Jul 2018 10:26:41 +0100 Subject: [PATCH] Tweak block warning dropdown menu position The menu is slightly vertically off-centred when on full screen desktop. This moves it up a bit while still looking ok on mobile --- packages/editor/src/components/warning/style.scss | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/editor/src/components/warning/style.scss b/packages/editor/src/components/warning/style.scss index d908c95cc068a..68042dbc604bb 100644 --- a/packages/editor/src/components/warning/style.scss +++ b/packages/editor/src/components/warning/style.scss @@ -45,9 +45,13 @@ display: flex; margin: 0 0 $block-padding 0; } - + .editor-warning__action { margin: 0 6px 0 0; margin-left: 0; } -} \ No newline at end of file + + .editor-warning__hidden { + margin-top: -3px; + } +}