37 lines
688 B
SCSS
Raw Normal View History

2016-05-22 20:25:38 +03:00
.footerMenu {
2020-05-24 02:08:24 +03:00
padding: 0 25px;
text-align: center;
font-size: 12px;
// Set line-height the same as the font-size value to keep the border-bottom
// close to the text when the inline-block is turned on .footerItem
line-height: 12px;
}
.footerItem {
2020-05-24 02:08:24 +03:00
display: inline-block;
margin: 2px 5px 2px 0;
color: #666;
border-bottom-color: #666;
2016-05-22 20:25:38 +03:00
2020-05-24 02:08:24 +03:00
&:last-of-type {
margin-right: 0;
}
2016-05-22 20:25:38 +03:00
}
.langTriggerContainer {
2020-05-24 02:08:24 +03:00
margin-top: 1px;
}
.langTrigger {
2020-05-24 02:08:24 +03:00
composes: footerItem;
}
.langTriggerIcon {
2020-05-24 02:08:24 +03:00
composes: globe from '~app/components/ui/icons.scss';
2020-05-24 02:08:24 +03:00
position: relative;
bottom: 1px;
font-size: 11px;
margin-right: 3px;
}