aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.scss
blob: 8b0172315b6aa8a064d7cce5ecf68aa62c73456e (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
47
48
49
50
51
52
53
54
@import '_variables';
@import '_mixins';

.actor {
  display: flex;

  img {
    margin-right: 15px;

    &:not(.channel) {
      @include avatar(100px);
    }

    &.channel {
      @include channel-avatar(100px);
    }
  }

  .actor-info {
    display: inline-flex;
    flex-direction: column;

    .actor-info-display-name {
      font-size: 20px;
      font-weight: $font-bold;

      @media screen and (max-width: $small-view) {
        font-size: 16px;
      }
    }

    .actor-info-username {
      position: relative;
      font-size: 14px;
      color: pvar(--greyForegroundColor);
    }

    .actor-info-followers {
      font-size: 15px;
      padding-bottom: .5rem;
    }
  }
}

.actor-img-edit-container {
  position: relative;
  width: 0;
}

.actor-img-edit-button {
  top: 55px;
  right: 45px;
  border-radius: 50%;
}