Skip to content

Commit 3cc6a40

Browse files
committed
Fix flexbox prefixes
1 parent cd80af9 commit 3cc6a40

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/components/controls/controls.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
.video-controls {
22
height: 34px;
33
background-color: rgba(0,0,0,0.8);
4+
display: -webkit-box;
5+
display: -webkit-flex;
6+
display: -ms-flexbox;
47
display: flex;
58
}
69

@@ -16,7 +19,8 @@
1619
padding: 10px;
1720
height: 100%;
1821
font-size: 14px;
19-
box-sizing: border-box;
22+
-webkit-box-sizing: border-box;
23+
box-sizing: border-box;
2024
}
2125

2226
.video__control--focused,

src/components/controls/seek/seek.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
.video-seek {
2-
flex-grow: 1;
2+
-webkit-box-flex: 1;
3+
-webkit-flex-grow: 1;
4+
-ms-flex-positive: 1;
5+
flex-grow: 1;
36
height: 100%;
47
position: relative;
58
padding: 0 10px;

0 commit comments

Comments
 (0)