Newer
Older
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
:host(.hy-menu-item) {
display: flex;
}
a {
@include font-size(12px, 20px);
@include font-weight($regular);
align-items: center;
color: var(--brand-main-nearly-black);
display: flex;
font-family: var(--main-font-family);
letter-spacing: -0.4px;
margin-left: 20px;
text-decoration: none;
text-transform: uppercase;
&:focus {
outline: solid 2px var(--additional-yellow);
outline-offset: 2px;
}
&.is-active {
.hy-menu-language-item__label {
border-bottom-color: var(--additional-orange);
}
}
&:not(.is-mobile) {
@include font-size(16px, 20px);
margin: 0 0 5px;
}
.hy-menu-language-item__label {
border-bottom: 2px solid transparent;
padding-bottom: 5px;
}
}