Inside plyr.css you can't find --plyr-font-smoothing getting used at all.
In SCSS code, we can see this:
|
$plyr-font-smoothing: var(--plyr-font-smoothing, false) !default; |
and this:
|
@mixin plyr-font-smoothing($mode: true) { |
|
@if $mode { |
This isn't valid code, because the current default value is a string, so it's always true.
So, the whole thing is useless. What to do, just make it the default and remove variables.
Inside
plyr.cssyou can't find--plyr-font-smoothinggetting used at all.In SCSS code, we can see this:
plyr/src/sass/settings/type.scss
Line 16 in 287ec5a
and this:
plyr/src/sass/lib/mixins.scss
Lines 14 to 15 in 287ec5a
This isn't valid code, because the current default value is a string, so it's always true.
So, the whole thing is useless. What to do, just make it the default and remove variables.