From 5f53577faa0addbb381cdcb37b561dee50ab1907 Mon Sep 17 00:00:00 2001 From: Robin Wijnant Date: Mon, 1 Jun 2020 18:11:41 +0200 Subject: [PATCH] fix(icon): remove specifity from svg global styles --- src/index.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index 62db793b..8e405d98 100644 --- a/src/index.css +++ b/src/index.css @@ -1,6 +1,9 @@ @import './theme.css'; -svg[viewBox='0 0 24 24'][stroke-linejoin='round'][stroke-linecap='round'] { +/* Multiple issues open to set the default svg size */ +/* https://github.com/feathericons/react-feather/pull/62 */ +/* Remove this when a better solution is available */ +svg[viewBox='0 0 24 24'] { width: var(--font-size); height: var(--font-size); }