Skip to content

Commit 1d771d9

Browse files
fix: use backup styles when inset is not supported (#8844)
## Description Small fix to use backup styles only when inset is not supported. ## Specific Changes proposed Use backup styles only when inset is not supported. ## Requirements Checklist - [x] Feature implemented / Bug fixed
1 parent 3e9e4e8 commit 1d771d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/css/components/_text-track.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ video::-webkit-media-text-track-display {
4747
width: 80% !important;
4848
}
4949

50-
@supports (inset: 10px) {
50+
@supports not (inset: 10px) {
5151
.video-js .vjs-text-track-display > div {
5252
top: 0;
5353
right: 0;

0 commit comments

Comments
 (0)