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
| .ground-truth {
| &_size {
| &_md {
| &,
| .ground-truth__toggle,
| .ground-truth__indicator {
| width: 32px;
| height: 32px;
| }
| }
| }
|
| &_disabled {
| pointer-events: none;
| }
|
| &__toggle {
| padding: 0;
| }
|
| &__indicator {
| color: var(--sand_400);
|
| &_dark {
| color: var(--color-neutral-content);
| }
|
| &_active {
| color: var(--canteloupe_400);
|
| path {
| fill-opacity: 1;
| stroke-opacity: 1;
| }
| }
| }
| }
|
|