UI - cross-browser svg scaling fixes (#6933)

* fix icon sizing in firefox

* specify height becuase IE likes to make things way too tall
This commit is contained in:
Matthew Irish
2019-06-20 10:55:23 -05:00
committed by GitHub
parent fef0c456d6
commit cedd6208b2
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,7 @@
align-items: flex-start;
vertical-align: middle;
width: 16px;
height: 16px;
margin: 2px 4px;
}
@@ -21,16 +22,20 @@
.hs-icon-s {
width: 12px;
height: 12px;
}
.hs-icon-l {
width: 20px;
height: 20px;
}
.hs-icon-xl {
width: 28px;
height: 28px;
}
.hs-icon-xxl {
width: 32px;
height: 32px;
}

View File

@@ -103,7 +103,6 @@
.hs-icon {
margin: 0 $spacing-xxs 0 0;
min-width: fit-content;
}
.p {