aboutsummaryrefslogtreecommitdiff
path: root/src/components/report/report.scss
blob: 9762400b15ed6f112e82aef2986690dbe0d69b06 (plain)
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
@import "../../variables";

.Report {
  .report-content {
    margin: 0.5em 0 1em;
  }

  .report-state {
    margin: 0.5em 0 1em;
  }

  .reported-status {
    border: 1px solid $fallback--faint;
    border-color: var(--faint, $fallback--faint);
    border-radius: $fallback--inputRadius;
    border-radius: var(--inputRadius, $fallback--inputRadius);
    color: $fallback--text;
    color: var(--text, $fallback--text);
    display: block;
    padding: 0.5em;
    margin: 0.5em 0;

    .status-content {
      pointer-events: none;
    }

    .reported-status-heading {
      display: flex;
      width: 100%;
      justify-content: space-between;
      margin-bottom: 0.2em;
    }

    .reported-status-name {
      font-weight: bold;
    }
  }

  .note {
    width: 100%;
    margin-bottom: 0.5em;
  }
}