41 lines
695 B
SCSS
41 lines
695 B
SCSS
.table-box {
|
|
height: 100%;
|
|
// width: 100%;
|
|
// display: flex;
|
|
// flex-direction: column;
|
|
// background-color: #f6f6f6;
|
|
// padding: 0 20px;
|
|
// overflow: hidden;
|
|
.middle-video {
|
|
flex: 1;
|
|
padding-left: 10px;
|
|
.title-video {
|
|
height: 56px;
|
|
background-color: #fff;
|
|
margin-bottom: 20px;
|
|
padding: 0 36px;
|
|
border-radius: 8px;
|
|
img {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.main {
|
|
// position: fixed;
|
|
// top: 50%;
|
|
// left: 30%;
|
|
// transform: translateY(-50%);
|
|
// margin: 0 20px;
|
|
border-radius: 8px;
|
|
flex: 1;
|
|
height: 100%;
|
|
// margin: auto;
|
|
// background-color: rgba(255, 192, 203, 0.4);
|
|
}
|
|
}
|
|
:deep() {
|
|
.card {
|
|
background-color: #092945;
|
|
}
|
|
}
|
|
}
|