aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-actor-image-edit/actor-avatar-edit.component.scss
blob: 689c5873c551fb7596c3193d52e3433d07895732 (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
@use '_variables' as *;
@use '_mixins' as *;

.actor {
  display: flex;
}

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

.actor-info-display-name {
  @include peertube-word-wrap;
  @include font-size(1.25rem);

  font-weight: $font-bold;

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

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

.actor-info-followers {
  padding-bottom: .5rem;
}

.actor-img-edit-button {
  border-radius: 50%;

  position: absolute;
  bottom: 5px;
  right: 5px;
}

.button-focus-within:focus-within {
  box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest);
}

.dropdown-item {
  @include dropdown-with-icon-item;
}

.dropdown-toggle::after {
  display: none;
}