html - How do I scale a stubborn SVG embedded with the tag? - Stack Overflow
You can add "preserveAspectRatio" and "viewBox" attributes to the tag to accomplish this. Open the .svg file in an editor and find the tag. in that tag, add the following attributes: preserveAspectRatio="xMinYMin meet" viewBox="0 0 {width} {height}"...