📦 EqualifyEverything / equalify

📄 Blocker.module.scss · 55 lines
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
55@use "../global-styles/variables.module.scss";
@use "../global-styles/fonts.scss";

.Blocker {
    .dataRow_last {
      border-bottom: 0 !important;
    }
    .code {
        max-width: 800px;
        word-break: break-word;
        code {
          white-space: pre-wrap !important;
        }
      }

    .SummaryCard {
      margin-top: 1.5rem;
    }

    .summaryHeader {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1rem;

      h2 {
        margin: 0;
      }
    }

    .summaryActions {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .summaryContent {
      p {
        margin: 0 0 0.5rem;
        line-height: 1.6;

        &:last-child {
          margin-bottom: 0;
        }
      }
    }

    .summaryUnavailable {
      margin: 0;
      opacity: 0.6;
    }
}