44 lines
728 B
SCSS
44 lines
728 B
SCSS
.joinMeetingModal {
|
|
>div:nth-child(1) {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
>div:nth-child(1) {}
|
|
|
|
>div:nth-child(2) {
|
|
margin-left: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
>span:nth-child(1) {
|
|
color: #989696;
|
|
font-size: 16px;
|
|
}
|
|
|
|
>span:nth-child(2) {
|
|
color: white;
|
|
margin-top: 4px;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
>div:nth-child(2) {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 20px;
|
|
|
|
>div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
|
|
>span {
|
|
color: white;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
} |