element-call/src/room/PTTCallView.module.css

71 lines
1,005 B
CSS
Raw Normal View History

2022-04-23 01:05:48 +00:00
.pttCallView {
position: relative;
display: flex;
flex-direction: column;
2022-04-27 23:47:23 +00:00
justify-content: center;
2022-04-23 01:05:48 +00:00
overflow: hidden;
min-height: 100%;
position: fixed;
height: 100%;
width: 100%;
}
.center {
width: 100%;
display: flex;
flex: 1;
flex-direction: column;
align-items: center;
2022-04-27 23:47:23 +00:00
margin-top: 48px;
2022-04-23 01:05:48 +00:00
}
.actionTip {
margin-top: 42px;
2022-04-27 23:47:23 +00:00
margin-bottom: 45px;
2022-04-23 01:05:48 +00:00
font-size: 17px;
}
.participants {
2022-04-27 23:47:23 +00:00
display: flex;
flex-direction: column;
margin: 20px;
margin-bottom: 67px;
2022-04-23 01:05:48 +00:00
}
.participants > p {
color: #A9B2BC;
margin-bottom: 8px;
2022-04-27 23:47:23 +00:00
}
.facepile {
align-self: center;
}
.talkingInfo {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 38px;
}
.pttButtonContainer {
display: flex;
flex-direction: column;
align-items: center;
}
.footer {
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 64px;
}
.footer > * {
margin-right: 30px;
}
.footer > :last-child {
margin-right: 0px;
2022-04-23 01:05:48 +00:00
}