blob: 692a81daa01e803449288ffedcb14be8add501f8 (
plain) (
blame)
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
|
@import '_mixins';
a {
@include disable-default-a-behaviour;
width: 100%;
&, &:hover {
color: pvar(--mainForegroundColor);
&.focus-visible {
background-color: pvar(--mainHoverColor);
color: pvar(--mainBackgroundColor);
}
}
}
.bg-gray {
background-color: pvar(--mainBackgroundColor);
}
.text-gray-light {
color: pvar(--mainForegroundColor);
}
my-global-icon {
width: 17px;
position: relative;
top: -2px;
margin: 5px;
@include apply-svg-color(pvar(--mainForegroundColor));
}
|