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@use "../global-styles/variables.module.scss";
@use "../global-styles/fonts.scss";
.BlockersTable {
.blocker-code {
color:variables.$white;
background: variables.$black;
padding: calc(variables.$spacing/2) calc(variables.$spacing * 2);
border-radius: calc(variables.$spacing/2);
display: inline-block;
margin-bottom: calc(variables.$spacing/2);
}
.view-code-button {
border: 0;
display: inline-flex;
flex-direction: row;
align-content: center;
justify-content: center;
align-items: center;
background: variables.$paper;
color: variables.$red;
font-weight: bold;
border-radius: 999px;
gap: calc(variables.$spacing/6);
padding: calc(variables.$spacing/2) calc(variables.$spacing * 2);
svg {
}
span {
display: block;
white-space: nowrap;
}
}
.search-input {
margin-right:0;
margin-bottom: calc(variables.$spacing/1.5)
}
.view-code-details {
span {
@include fonts.font-size-small;
}
display: flex;
flex-wrap: wrap;
}
.tooltip-rondel {
color:variables.$white;
background: variables.$black;
border-radius: 999px;
cursor:pointer;
}
/* table cells */
td.url {
min-width: 400px;
}
td.issue {
min-width: 300px;
}
td.tags {
min-width: 140px;
}
td.categories {
min-width: 140px;
}
}