blob: 6668f67d78a9c9658e76c53b19346219e4b28ea0 (
plain)
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
|
.header {
display: flex;
align-items: center;
cursor: pointer;
.arrow {
display: inline-flex;
transform: rotate(0deg);
transition: transform 0.3s;
&.isOpen {
transform: rotate(180deg);
}
&:focus {
outline: var(--color-focus-blue) solid 1px;
}
}
}
.updatedAt {
margin-bottom: 12px;
small {
color: #777;
}
}
.body {
padding: 10px 15px;
@media (--breakpoint-not-small) {
padding: 10px 40px;
}
}
.actionFooter {
display: flex;
}
.refresh {
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
|