From 7d36baef6cb9b93b4cefb96fb19a986cec70f172 Mon Sep 17 00:00:00 2001 From: Electron - Mark Firth <bananabox100@gmail.com> Date: Mon, 7 Jan 2019 22:30:38 +1000 Subject: [PATCH] SVG Rendering Error Fix For Buttons This fixes the SVG rendering error that can happen when the app is displayed at different sizes. --- src/renderer/scss/component/_button.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/renderer/scss/component/_button.scss b/src/renderer/scss/component/_button.scss index a21b9dda0..094784cef 100644 --- a/src/renderer/scss/component/_button.scss +++ b/src/renderer/scss/component/_button.scss @@ -1,6 +1,10 @@ .btn { fill: currentColor; position: relative; + + & svg { + stroke-width: 1; + } } .btn--alt {