mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
[Icons] Fix sass deprecation warnings (#680)
* [Icons] Cleanup deprecation warnings * Reverted to calc since math.div is not available in our current version * Removed * -1 trick
This commit is contained in:
parent
fc0638a7d9
commit
6d186bb204
@ -31,7 +31,7 @@ $icomoon-font-path: "~@bitwarden/jslib-angular/src/scss/bwicons/fonts/" !default
|
|||||||
|
|
||||||
// Fixed Width Icons
|
// Fixed Width Icons
|
||||||
.bwi-fw {
|
.bwi-fw {
|
||||||
width: (18em / 14);
|
width: calc(18em / 14);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -41,8 +41,8 @@ $icomoon-font-path: "~@bitwarden/jslib-angular/src/scss/bwicons/fonts/" !default
|
|||||||
}
|
}
|
||||||
|
|
||||||
.bwi-lg {
|
.bwi-lg {
|
||||||
font-size: (4em / 3);
|
font-size: calc(4em / 3);
|
||||||
line-height: (3em / 4);
|
line-height: calc(3em / 4);
|
||||||
vertical-align: -15%;
|
vertical-align: -15%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -75,7 +75,7 @@ $icomoon-font-path: "~@bitwarden/jslib-angular/src/scss/bwicons/fonts/" !default
|
|||||||
// List Icons
|
// List Icons
|
||||||
.bwi-ul {
|
.bwi-ul {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
margin-left: (30em / 14);
|
margin-left: calc(30em / 14);
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
> li {
|
> li {
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -84,12 +84,12 @@ $icomoon-font-path: "~@bitwarden/jslib-angular/src/scss/bwicons/fonts/" !default
|
|||||||
|
|
||||||
.bwi-li {
|
.bwi-li {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: -(30em / 14);
|
left: calc(-30em / 14);
|
||||||
width: (30em / 14);
|
width: calc(30em / 14);
|
||||||
top: (2em / 14);
|
top: calc(2em / 14);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
&.bwi-lg {
|
&.bwi-lg {
|
||||||
left: -(30em / 14) + (4em / 14);
|
left: calc(-30em / 14) + calc(4em / 14);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -247,9 +247,3 @@ $icons: (
|
|||||||
content: $glyph;
|
content: $glyph;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
:export {
|
|
||||||
@each $name, $glyph in $icons {
|
|
||||||
#{$name}: $glyph;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user