26 lines
459 B
SCSS
26 lines
459 B
SCSS
@import 'common/sass/variables';
|
|
@import 'common/sass/mixins';
|
|
|
|
.LanguageSelect {
|
|
&-language {
|
|
@include reset-button;
|
|
display: block;
|
|
width: 100%;
|
|
height: 48px;
|
|
line-height: 48px;
|
|
padding: 0 10px;
|
|
color: $text-color;
|
|
border-bottom: 1px solid $gray-lighter;
|
|
text-align: left;
|
|
|
|
&:hover {
|
|
color: $link-hover-color;
|
|
}
|
|
|
|
&.is-selected {
|
|
color: $link-color;
|
|
background: $gray-lightest;
|
|
}
|
|
}
|
|
}
|