Skip to content
Snippets Groups Projects
Commit 032e1ea2 authored by Johannes Kreiner's avatar Johannes Kreiner
Browse files

[BUGFIX] Fix IE11 SVG widths

parent 44e5451b
No related branches found
No related tags found
No related merge requests found
......@@ -77,8 +77,14 @@
svg {
margin-right: 5px;
height: 14px;
width: auto;
display: inline-block;
// IE11 fix for SVGs taking much more space than necessary
width: 14px;
@supports (display: block) {
width: auto;
}
}
a {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment