mirror of
https://github.com/vector-im/element-call.git
synced 2026-05-10 10:24:44 +00:00
41 lines
721 B
CSS
41 lines
721 B
CSS
.error {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--cpd-space-2x);
|
|
max-inline-size: 480px;
|
|
}
|
|
|
|
.icon {
|
|
margin-block-end: var(--cpd-space-4x);
|
|
}
|
|
|
|
.error > h1 {
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.error > p {
|
|
font: var(--cpd-font-body-lg-regular);
|
|
color: var(--cpd-color-text-secondary);
|
|
text-align: center;
|
|
}
|
|
|
|
.technicalDetails {
|
|
margin-top: var(--cpd-space-1x);
|
|
}
|
|
|
|
.technicalDetailsSummary {
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.technicalDetailsPre {
|
|
margin-top: var(--cpd-space-2x);
|
|
padding: var(--cpd-space-2x);
|
|
background-color: var(--cpd-color-bg-subtle-secondary);
|
|
overflow: auto;
|
|
font-size: var(--cpd-font-size-body-sm);
|
|
white-space: pre-wrap;
|
|
}
|