2019-03-16 11:33:31 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-05-19 00:20:55 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
2019-03-16 11:33:31 +08:00
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2019-03-16 11:33:31 +08:00
|
|
|
*/
|
|
|
|
|
2022-05-19 00:20:55 +08:00
|
|
|
.mx_LabelledCheckbox {
|
|
|
|
display: flex;
|
2022-08-17 19:49:50 +08:00
|
|
|
gap: 8px;
|
2022-05-19 00:20:55 +08:00
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.mx_Checkbox {
|
2022-07-27 21:39:29 +08:00
|
|
|
margin-top: 3px; /* visually align with label text */
|
2019-03-16 11:33:31 +08:00
|
|
|
}
|
|
|
|
|
2022-05-19 00:20:55 +08:00
|
|
|
.mx_LabelledCheckbox_labels {
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
.mx_LabelledCheckbox_label {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_LabelledCheckbox_byline {
|
|
|
|
display: block;
|
|
|
|
padding-top: $spacing-4;
|
|
|
|
color: $muted-fg-color;
|
|
|
|
font-size: $font-11px;
|
|
|
|
}
|
2019-03-16 11:33:31 +08:00
|
|
|
}
|
|
|
|
}
|