File: /var/www/innodrive/src/scss/blocks/language.scss
.language {
padding: 0 7px;
font-size: 14px;
line-height: 28px;
color: #5c5c5c;
}
.language__link {
display: block;
font-size: inherit;
line-height: inherit;
&--current {
display: none;
}
}
@include media('tablet-m') {
.language {
display: flex;
justify-content: center;
width: 100%;
padding: 15px 28px 13px;
font-size: 18px;
line-height: 28px;
border-top: 1px solid #d3d3d3;
}
.language__link {
line-height: 16px;
box-shadow: 0 1px 0 $color-primary-grey;
&--current {
display: block;
font-weight: 700;
color: $color-primary-blue;
box-shadow: none;
}
&:not(:last-of-type) {
margin-right: 18px;
}
}
}