Skip to content

Commit

Permalink
chore(style): add stylelint-disable-next-line property-no-vendor-pref…
Browse files Browse the repository at this point in the history
…ix to keep maximum backwards compatibility
  • Loading branch information
oliverschuerch committed Dec 18, 2024
1 parent be23a95 commit aac356f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/styles/src/mixins/_icons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,16 @@
vertical-align: -0.15em;
background-color: currentColor;
color: $color;
/* stylelint-disable-next-line property-no-vendor-prefix */
-webkit-mask-image: url('#{$base}/#{$name}.svg');
mask-image: url('#{$base}/#{$name}.svg');
/* stylelint-disable-next-line property-no-vendor-prefix */
-webkit-mask-position: center center;
mask-position: center center;
/* stylelint-disable-next-line property-no-vendor-prefix */
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
/* stylelint-disable-next-line property-no-vendor-prefix */
-webkit-mask-size: 100%;
mask-size: 100%;
}
Expand Down

0 comments on commit aac356f

Please sign in to comment.