]>
Commit | Line | Data |
---|---|---|
8cbc40b2 C |
1 | @use '_variables' as *; |
2 | @use '_mixins' as *; | |
6af662a5 RK |
3 | |
4 | a { | |
5 | @include disable-default-a-behaviour; | |
931d3430 | 6 | |
6af662a5 RK |
7 | width: 100%; |
8 | ||
931d3430 C |
9 | &, |
10 | &:hover { | |
e66883b3 | 11 | color: pvar(--mainForegroundColor); |
6af662a5 RK |
12 | |
13 | &.focus-visible { | |
e66883b3 RK |
14 | background-color: pvar(--mainHoverColor); |
15 | color: pvar(--mainBackgroundColor); | |
6af662a5 RK |
16 | } |
17 | } | |
18 | } | |
19 | ||
20 | .bg-gray { | |
e66883b3 | 21 | background-color: pvar(--mainBackgroundColor); |
6af662a5 RK |
22 | } |
23 | ||
24 | .text-gray-light { | |
e66883b3 | 25 | color: pvar(--mainForegroundColor); |
6af662a5 RK |
26 | } |
27 | ||
28 | my-global-icon { | |
931d3430 C |
29 | @include apply-svg-color(pvar(--mainForegroundColor)); |
30 | ||
6af662a5 RK |
31 | width: 17px; |
32 | position: relative; | |
33 | top: -2px; | |
34 | margin: 5px; | |
6af662a5 | 35 | } |