From 80b47de81b464e8dcb9f01b9fe4bc89f0b822190 Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Wed, 30 Dec 2020 02:43:42 -0700 Subject: [PATCH] use variable to set width and height of nav toggle button in toolbar --- src/css/toolbar.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/css/toolbar.css b/src/css/toolbar.css index fe3cc5b..7f38488 100644 --- a/src/css/toolbar.css +++ b/src/css/toolbar.css @@ -22,9 +22,9 @@ border: none; outline: none; line-height: inherit; - height: 2.5rem; padding: 0; - width: 2.5rem; + height: var(--toolbar-height); + width: var(--toolbar-height); margin-right: -0.25rem; } -- 2.11.0