2019-03-16 11:33:31 +08:00
|
|
|
/*
|
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
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|