fix: use correct icon for Video.js 8

This commit is contained in:
Matt Luedke 2023-11-14 14:51:14 -05:00
parent d16842b1ac
commit 1209756616

View file

@ -12,8 +12,15 @@
font-weight: normal;
font-style: normal;
&::before {
// The correct icon font character for Video.js 7 and below:
.video-js:not(.vjs-v8) & {
content: '\f110';
}
// Icon font character for Video.js 8:
.vjs-v8 & {
content: '\f114';
}
}
}
}