aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-instance/instance-about-accordion.component.scss
blob: be6099a97dd4b04e6d5a1a17bf43c045cfb8e32f (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
@use '_variables' as *;
@use '_mixins' as *;

.instance-name {
  line-height: 1.7rem;
}

.instance-short-description {
  @include ellipsis-multiline(1rem, 3);

  margin-top: 20px;
  margin-bottom: 20px;
}

.block {
  font-size: 15px;
  margin-bottom: 15px;
}

ngb-accordion ::ng-deep {
  .card {
    border-color: var(--mainBackgroundColor);

    .card-header {
      background-color: unset;
      padding: 0;

      + .collapse.show {
        background-color: var(--submenuBackgroundColor);
      }
    }
  }

  .btn {
    @include peertube-button;
    @include grey-button;

    border-radius: unset;
    width: 100%;
  }
}