Files
element-call/src/room/LobbyView.module.css
T

42 lines
863 B
CSS
Raw Normal View History

2022-01-05 13:09:12 -08:00
/*
Copyright 2021-2024 New Vector Ltd.
2022-01-05 13:09:12 -08:00
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
2022-01-05 13:09:12 -08:00
*/
2023-09-18 15:45:48 -04:00
.content {
2022-01-05 13:09:12 -08:00
display: flex;
flex-direction: column;
align-items: center;
2023-09-18 15:45:48 -04:00
justify-content: center;
gap: var(--cpd-space-6x);
2022-01-05 13:09:12 -08:00
flex: 1;
overflow: hidden;
height: 100%;
}
2024-04-23 15:15:13 +02:00
.wait {
color: var(--cpd-color-text-primary) !important;
background-color: var(--cpd-color-bg-canvas-default) !important;
/* relative colors are only supported on chromium based browsers */
background-color: rgb(
from var(--cpd-color-bg-canvas-default) r g b / 0.5
) !important;
}
.wait > svg {
color: var(--cpd-color-theme-primary) !important;
}
2023-09-18 15:45:48 -04:00
@media (max-width: 500px) {
.join {
width: 100%;
}
2022-01-05 13:09:12 -08:00
}
2023-07-17 16:53:58 +02:00
2023-09-18 15:45:48 -04:00
@media (min-height: 650px) {
.content {
gap: var(--cpd-space-10x);
}
2023-07-17 16:53:58 +02:00
}