From 4a5f0b5a769b6cd4fdcf47c5ef540ba49f7599d5 Mon Sep 17 00:00:00 2001 From: Rhys Lloyd <1326759+justrhysism@users.noreply.github.com> Date: Thu, 5 Nov 2020 08:08:56 +1030 Subject: [PATCH] Resolve #659 Set border-box explicitly so upstream frameworks don't upset the layout. --- src/additional-components/Controls/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/additional-components/Controls/style.css b/src/additional-components/Controls/style.css index eb70bfac..5250b43d 100644 --- a/src/additional-components/Controls/style.css +++ b/src/additional-components/Controls/style.css @@ -8,6 +8,7 @@ &-button { background: #fefefe; border-bottom: 1px solid #eee; + box-sizing: content-box; display: flex; justify-content: center; align-items: center; @@ -25,4 +26,4 @@ background: #f4f4f4; } } -} \ No newline at end of file +}