blob: d22e50b7ccf4c77dec5c8570ec0992387c71436e (
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
|
@use '~/styles/utils/custom-media' as *;
.updatedAt {
margin-bottom: 12px;
margin-left: 5px;
small {
color: #777;
}
}
.body {
padding: 10px;
background-color: var(--bg-log-info-card);
border: 1px solid var(--color-separator);
border-radius: 12px;
box-shadow: var(--shadow-card);
transition: border-color 0.2s ease, box-shadow 0.2s ease;
&:hover {
border-color: var(--color-focus-blue);
}
}
.actionFooter {
display: flex;
button {
margin: 0 5px;
&:first-child {
margin-left: 0;
}
}
}
.refresh {
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
|