From 9439677b29491dd883f6cfda854e2884c34aba8f Mon Sep 17 00:00:00 2001 From: Ariel Klikstein Date: Sun, 28 Oct 2018 17:56:40 +0200 Subject: [PATCH] SVG image src file - Fix #5987 --- assets/dev/scss/frontend/widgets/image.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/dev/scss/frontend/widgets/image.scss b/assets/dev/scss/frontend/widgets/image.scss index d88a512266e..586b6e5881e 100644 --- a/assets/dev/scss/frontend/widgets/image.scss +++ b/assets/dev/scss/frontend/widgets/image.scss @@ -9,6 +9,10 @@ > a, figure > a { display: inline-block; //For alignment image with link - Changed to 'inline-block' instead of 'block' to handle with this issue https://github.com/pojome/elementor/issues/5897 + + img[src$=".svg"] { + width: 48px; //Fix SVG image src, issue: https://github.com/pojome/elementor/issues/5987 + } } img {