blob: 16fcba6176e65bd2a54f7774a8586ff303693e05 (
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
|
.header {
margin-bottom: 12px;
}
.group {
padding: 10px;
background-color: var(--color-bg-card);
border-radius: 10px;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.zapWrapper {
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.arrow {
display: inline-flex;
transform: rotate(0deg);
transition: transform 0.3s;
&.isOpen {
transform: rotate(180deg);
}
&:focus {
outline: var(--color-focus-blue) solid 1px;
}
}
|