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@use "../global-styles/variables.module.scss";
@use "../global-styles/fonts.scss";
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.spinning {
animation: spin 1s linear infinite;
color: variables.$green;
}
.AuditsTable {
margin-top:variables.$spacing;
margin-bottom:calc(variables.$spacing*2);
table {
display:table !important;
}
.audit-name {
font-weight: bold;
}
.header-sort {
display: inline-flex;
align-items: center;
border:0;
background: transparent;
cursor: pointer;
padding:0;
font-weight: bold;
&:hover {
color: variables.$red;
}
}
.header-label {
margin-right: calc(variables.$spacing/2);
}
.arrow-placeholder {
width:1em;
height:1em;
}
}