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@use "../global-styles/variables.module.scss";
@use "../global-styles/fonts.scss";
.BlockersTableSummary {
.graph-card {
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: row-reverse;
padding-left: variables.$spacing;
h2 {
display: block;
min-width: 66%;
line-height: 1.2rem;
}
}
.donut-chart {
min-width: 100px;
min-height: 100px;
}
.blockers-count {
padding: calc(variables.$spacing * 2) 0;
h2 {
display: block;
line-height: 2rem;
}
span {
display: block;
}
}
.category-tag-card {
display: flex;
.column {
width:50%;
padding-right: variables.$spacing;
}
h2 {
font-size: 0.833rem;
}
ol {
list-style-type: none;
margin: 0;
padding: 0;
li {
font-size: 0.833rem;
}
}
}
}