1
0
Fork 0
peertube/client/src/app/shared/shared-forms/peertube-checkbox.component.scss

48 lines
755 B
SCSS
Raw Normal View History

2021-05-27 12:25:00 -04:00
@use '_variables' as *;
@use '_mixins' as *;
.root {
display: flex;
2022-06-08 10:14:24 -04:00
label {
display: flex;
2022-06-15 08:59:25 -04:00
font-size: $form-input-font-size;
input {
@include peertube-checkbox(1px);
}
}
2018-08-27 05:52:14 -04:00
label {
margin-bottom: 0;
}
2018-08-27 05:52:14 -04:00
my-help {
2022-06-15 08:59:25 -04:00
line-height: 17px;
2018-08-27 05:52:14 -04:00
}
2022-06-15 08:59:25 -04:00
.form-group-description {
margin-top: 2px;
}
.wrapper:empty {
display: none;
}
.recommended {
2021-06-07 11:38:31 -04:00
@include margin-left(.5rem);
align-self: baseline;
display: inline-block;
padding: 4px 6px;
cursor: default;
border-radius: 3px;
font-size: 12px;
line-height: 12px;
font-weight: 500;
color: pvar(--inputPlaceholderColor);
2021-04-28 10:41:07 -04:00
background-color: rgba(217, 225, 232, .1);
border: 1px solid rgba(217, 225, 232, .5);
}
2021-04-28 10:41:07 -04:00
}