aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/overview/users/user-list/user-list.component.scss
blob: 1c4ca533f7513e4b73081dea1edab77ee730daa6 (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
@use 'sass:color';

@use '_variables' as *;
@use '_mixins' as *;

@use 'bootstrap/scss/functions' as *;

tr.banned > td {
  background-color: color.adjust($color: $red, $lightness: 40%) !important;
}

.banned-info {
  font-style: italic;
}

.ban-reason-label {
  font-weight: $font-semibold;
}

.cell-username .pt-badge {
  @include margin-left(15px);
}

p-tableCheckbox {
  position: relative;
  top: -2.5px;
}

my-global-icon {
  width: 18px;
}

.progress {
  @include progressbar($small: true);

  width: auto;
  max-width: 100%;
}

@media screen and (max-width: $primeng-breakpoint) {
  .progress {
    width: 100%;
  }

  .empty-cell {
    padding: 0;
  }
}