From 0ef398456cbef4a7b13125b3279767012070fdf2 Mon Sep 17 00:00:00 2001 From: Daniel Cho Date: Wed, 25 Aug 2021 12:52:50 -0400 Subject: [PATCH] C2LC-442: Set width and height of the svg used to open KeyboardShortcuts modal --- src/App.scss | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/App.scss b/src/App.scss index 167ca478..d5084d6f 100644 --- a/src/App.scss +++ b/src/App.scss @@ -36,8 +36,8 @@ body { flex-direction: column; } -.App__header-keyboardMenuIcon { - align-content: center; +.App__header-keyboardMenuIcon { + align-content: center; align-self: center; border-radius: 50%; background-color: #4C9990; @@ -56,9 +56,14 @@ body { box-shadow: 0 0 0 $c2lc-focus-indicator-width black; outline: none; } + + svg { + width: 1.6rem; + height: 1.6rem; + } } -.App__header-keyboardMenuIcon--disabled { +.App__header-keyboardMenuIcon--disabled { background-color: #B9BEC6; }