mirror of
https://github.com/vector-im/element-call.git
synced 2026-02-05 04:15:58 +00:00
53 lines
858 B
CSS
53 lines
858 B
CSS
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
.fixed,
|
|
.scrolling {
|
|
block-size: 100%;
|
|
}
|
|
|
|
.scrolling {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-content: center;
|
|
gap: var(--gap);
|
|
}
|
|
|
|
.scrolling > .slot {
|
|
width: var(--width);
|
|
height: var(--height);
|
|
}
|
|
|
|
.fixed {
|
|
position: relative;
|
|
}
|
|
|
|
.fixed > .slot {
|
|
position: absolute;
|
|
inline-size: 404px;
|
|
block-size: 233px;
|
|
inset-block: 0;
|
|
inset-inline: var(--cpd-space-3x);
|
|
}
|
|
|
|
.fixed > .slot[data-block-alignment="start"] {
|
|
inset-block-end: unset;
|
|
}
|
|
|
|
.fixed > .slot[data-block-alignment="end"] {
|
|
inset-block-start: unset;
|
|
}
|
|
|
|
.fixed > .slot[data-inline-alignment="start"] {
|
|
inset-inline-end: unset;
|
|
}
|
|
|
|
.fixed > .slot[data-inline-alignment="end"] {
|
|
inset-inline-start: unset;
|
|
}
|