45 lines
782 B
SCSS
45 lines
782 B
SCSS
|
|
.meeting-page {
|
||
|
|
width: 100%;
|
||
|
|
height: 100vh;
|
||
|
|
background: #000;
|
||
|
|
}
|
||
|
|
|
||
|
|
.meeting-nav {
|
||
|
|
position: fixed;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
padding: 0 16px;
|
||
|
|
background: rgba(0, 0, 0, 0.8);
|
||
|
|
z-index: 1000;
|
||
|
|
|
||
|
|
.nav-back {
|
||
|
|
width: 40px;
|
||
|
|
height: 40px;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
|
||
|
|
.back-icon {
|
||
|
|
color: #fff;
|
||
|
|
font-size: 24px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.nav-title {
|
||
|
|
color: #fff;
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
|
||
|
|
.nav-right {
|
||
|
|
.end-btn {
|
||
|
|
color: #ff4444;
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|