From cd7aa52d636695d2841a05b435eedda2bfebb6e0 Mon Sep 17 00:00:00 2001 From: Robert Anderson Date: Fri, 12 Jan 2018 23:09:18 +1100 Subject: [PATCH] Fix the Custom Color button from appearing flat (#4392) This is a regression caused by #3958. --- blocks/color-palette/style.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/blocks/color-palette/style.scss b/blocks/color-palette/style.scss index efd709f31fa9a5..98ef88cd502807 100644 --- a/blocks/color-palette/style.scss +++ b/blocks/color-palette/style.scss @@ -22,6 +22,12 @@ $color-palette-circle-spacing: 14px; &:hover { transform: scale( 1.2 ); } + + // Ensure that the
that wraps our toggle button with is full height + & > div { + height: 100%; + width: 100%; + } } .blocks-color-palette__item {