aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/user-subscription/subscribe-button.component.scss
blob: 9811fdc0c7b75d42be2481a76c75e2bb4c77994b (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
@import '_variables';
@import '_mixins';

.subscribe-button {
  @include peertube-button;
  @include orange-button;
}

.unsubscribe-button {
  @include peertube-button;
  @include grey-button
}

.subscribe-button,
.unsubscribe-button {
  padding: 3px 7px;
}

.unsubscribe-button {
  .subscribed {
    display: inline;
  }

  .unsubscribe {
    display: none;
  }

  &:hover {
    .subscribed {
      display: none;
    }

    .unsubscribe {
      display: inline;
    }
  }
}