switch to BEM naming pattern
This commit is contained in:
parent
0a7626fe49
commit
11fa00504d
2 changed files with 64 additions and 66 deletions
|
@ -1,11 +1,11 @@
|
|||
import React from "react";
|
||||
|
||||
const LoadingScreen = ({ status }) =>
|
||||
<div className="video--loading--screen">
|
||||
<div className="loading--screen--content">
|
||||
<div className="loading--spinner" />
|
||||
<div className="video--loading-screen">
|
||||
<div className="video--loading-screen-content">
|
||||
<div className="video--loading-spinner" />
|
||||
|
||||
<div className="video--loading--status">
|
||||
<div className="video--loading-status">
|
||||
{status}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -28,14 +28,21 @@ video {
|
|||
/*background: none;*/
|
||||
}
|
||||
|
||||
.video--loading--screen {
|
||||
.plyr {
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.video--loading-screen {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.loading--screen--content {
|
||||
.loading--spinner {
|
||||
.video--loading-spinner {
|
||||
position: relative;
|
||||
width: 11em;
|
||||
height: 11em;
|
||||
|
@ -80,20 +87,11 @@ video {
|
|||
background: black;
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.video--loading--status {
|
||||
.video--loading-status {
|
||||
padding-top: 20px;
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.plyr {
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
}
|
||||
|
||||
.video__cover {
|
||||
|
|
Loading…
Reference in a new issue