From 7c7d0250b407d4fcc35183481fbf95c873c0d613 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Thu, 29 Oct 2020 16:48:57 +0000 Subject: [PATCH] Ensure button text is centred --- src/components/Button.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Button.scss b/src/components/Button.scss index 121eb35..ec94ad8 100644 --- a/src/components/Button.scss +++ b/src/components/Button.scss @@ -30,6 +30,10 @@ limitations under the License. font-size: 15px; font-weight: 500; + display: inline-flex; + justify-content: center; + align-items: center; + &:hover { cursor: pointer; }