mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-27 00:48:06 +08:00
50 lines
736 B
CSS
50 lines
736 B
CSS
|
.modalOverlay {
|
||
|
position: fixed;
|
||
|
z-index: 100;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
bottom: 0;
|
||
|
right: 0;
|
||
|
background: rgba(23, 25, 28, 0.5);
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.modal {
|
||
|
background: #21262c;
|
||
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
||
|
border-radius: 8px;
|
||
|
min-width: 420px;
|
||
|
}
|
||
|
|
||
|
.modalHeader {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
padding: 34px 34px 0 34px;
|
||
|
}
|
||
|
|
||
|
.modalHeader h3 {
|
||
|
font-size: 24px;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.closeButton {
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
background-color: transparent;
|
||
|
padding: 0;
|
||
|
border: none;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
padding: 24px 32px;
|
||
|
}
|
||
|
|
||
|
.content p {
|
||
|
margin-top: 0;
|
||
|
}
|