From f7345c443d1add3f6bdea9dd23ac540ac448a9a0 Mon Sep 17 00:00:00 2001 From: chrisgarrity Date: Wed, 28 Jun 2017 09:32:08 -0400 Subject: [PATCH] Fix blocks icon for windows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Note for future reference - set the size for SVGs with height not width if using rem. IE on Windows 7 doesn’t resize correctly if the width is set with rem. Height works with rem, and exact pixel width works, but that should be avoided. --- src/views/tips/tips.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/tips/tips.scss b/src/views/tips/tips.scss index 8477ba2e6..4dcbe1419 100644 --- a/src/views/tips/tips.scss +++ b/src/views/tips/tips.scss @@ -46,7 +46,7 @@ $darken-button: rgba(0, 0, 0, .1); img { margin-right: 1rem; - width: 1rem; + height: 1.25rem; vertical-align: middle; }