aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/forms/peertube-checkbox.component.scss
blob: 6e4e207751fe713b2c5fc89f6c59a91e4cc25f5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@import '_variables';
@import '_mixins';

.root {
  display: flex;

  .form-group-checkbox {
    display: flex;

    span {
      font-weight: $font-regular;
      margin: 0;
    }

    input {
      @include peertube-checkbox(1px);

      width: 10px;
      margin-right: 10px;
    }
  }

  label {
    margin-bottom: 0;
  }

  my-help {
    position: relative;
    top: -2px;
  }
}