mirror of
https://github.com/vector-im/element-call.git
synced 2026-02-02 04:05:56 +00:00
This probably should have been part of https://github.com/element-hq/element-call/pull/2984
89 lines
1.3 KiB
CSS
89 lines
1.3 KiB
CSS
/*
|
|
Copyright 2021-2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
.headline {
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
white-space: pre-wrap;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.callEndedContent {
|
|
text-align: center;
|
|
max-width: 450px;
|
|
}
|
|
.callEndedContent p {
|
|
font-size: var(--font-size-subtitle);
|
|
}
|
|
.callEndedContent h3 {
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.disconnectedButtons {
|
|
display: grid;
|
|
gap: 50px;
|
|
}
|
|
|
|
.rageshakeButton {
|
|
grid-column: 2;
|
|
}
|
|
|
|
.callEndedButton {
|
|
margin: auto;
|
|
margin-top: 54px;
|
|
}
|
|
|
|
.submitButton {
|
|
width: 100%;
|
|
margin-top: 54px;
|
|
margin-left: 30px;
|
|
margin-right: 30px !important;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
min-height: calc(100% - 64px);
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.main {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding-inline: var(--inline-content-inset);
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
margin-bottom: 54px;
|
|
}
|
|
|
|
.headline {
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.footer {
|
|
margin-bottom: 44px;
|
|
}
|
|
|
|
@media (min-width: 800px) {
|
|
.logo {
|
|
display: none;
|
|
}
|
|
|
|
.container {
|
|
min-height: calc(100% - 76px);
|
|
}
|
|
|
|
.main {
|
|
justify-content: center;
|
|
}
|
|
}
|