From e319ac71371892236eda63eb0b5d68a3bad212e2 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Wed, 6 Sep 2023 18:20:38 +0200 Subject: [PATCH] fix: try to constrain the width of SVG Signed-off-by: Matej Focko --- src/components/ThemedSVG/styles.module.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ThemedSVG/styles.module.css b/src/components/ThemedSVG/styles.module.css index c49fbdb..a7beadd 100644 --- a/src/components/ThemedSVG/styles.module.css +++ b/src/components/ThemedSVG/styles.module.css @@ -1,3 +1,3 @@ .themed_svg { - max-width: 100%; -} \ No newline at end of file + max-width: inherit; +}