📦 EqualifyEverything / equalify

📄 Blocker.module.scss · 81 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81@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;
      margin-bottom: 1.5rem;
    }

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

      h2 {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.4rem;
      }
    }

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

    .summaryContent {
      line-height: 1.6;

      p, ul, ol, pre { margin: 0 0 0.75rem; }
      :last-child { margin-bottom: 0; }

      ul, ol { padding-left: 1.5rem; }
      li { margin-bottom: 0.25rem; }

      h1, h2, h3 { margin: 1rem 0 0.4rem; font-weight: 600; }
      h1 { font-size: 1.1rem; }
      h2 { font-size: 1rem; }
      h3 { font-size: 0.95rem; }

      code {
        font-family: monospace;
        font-size: 0.85em;
        background: rgba(0,0,0,0.15);
        padding: 0.1em 0.35em;
        border-radius: 3px;
      }

      pre {
        background: rgba(0,0,0,0.15);
        padding: 0.75rem;
        border-radius: 4px;
        overflow-x: auto;
        code { background: none; padding: 0; }
      }

      strong { font-weight: 600; }
    }

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