26 lines
489 B
SCSS
26 lines
489 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: color(text-color);
|
|
border-bottom: 1px solid color(gray-lighter);
|
|
text-align: left;
|
|
|
|
&:hover {
|
|
color: color(link-hover-color);
|
|
}
|
|
|
|
&.is-selected {
|
|
color: color(link-color);
|
|
background: color(gray-lightest);
|
|
}
|
|
}
|
|
}
|