aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/user-subscription/subscribe-button.component.scss
blob: 7a8a8ee08cdae945140a4d6790a4b43502fc6658 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
@import '_variables';
@import '_mixins';

.btn-group-subscribe {
  @include peertube-button;
  @include disable-default-a-behaviour;
  float: right;
  padding: 0;

  &.btn-group > .btn:not(.dropdown-toggle) {
    padding-right: 5px;
    font-size: 15px;
  }
  &.btn-group > .btn-group:not(:first-child) > .btn {
    padding-left: 2px;
  }

  &.subscribe-button {
    .btn {
      @include orange-button;
      font-weight: 600;
    }

    span.followers-count {
      padding-left:5px;
    }
  }
  &.unsubscribe-button {
    .btn {
      @include grey-button;
      font-weight: 600;
    }
  }

  .dropdown-header {
    padding-left: 1rem;
  }

  /deep/ form {
    padding: 0.25rem 1rem;
  }

  input {
    @include peertube-input-text(100%);
  }
}