forked from Transparency/kgroad-frontend2
34 lines
568 B
SCSS
34 lines
568 B
SCSS
.nav-language {
|
|
position: relative;
|
|
&__btn {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
&__select {
|
|
min-width: 130px;
|
|
position: absolute;
|
|
top: 120%;
|
|
}
|
|
|
|
&__option,
|
|
&__option_active {
|
|
width: 100%;
|
|
padding: 10px 14px;
|
|
font-weight: 900;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
&__option_active {
|
|
background-color: rgb(249, 250, 251);
|
|
justify-content: space-between;
|
|
}
|
|
|
|
&__option:last-child,
|
|
&__option_active:last-child {
|
|
border-bottom-left-radius: 10px;
|
|
border-bottom-right-radius: 10px;
|
|
}
|
|
}
|