accounts-frontend/packages/app/components/footerMenu/footerMenu.scss

37 lines
688 B
SCSS
Raw Normal View History

2016-05-22 22:55:38 +05:30
.footerMenu {
2020-05-24 04:38:24 +05:30
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 04:38:24 +05:30
display: inline-block;
margin: 2px 5px 2px 0;
color: #666;
border-bottom-color: #666;
2016-05-22 22:55:38 +05:30
2020-05-24 04:38:24 +05:30
&:last-of-type {
margin-right: 0;
}
2016-05-22 22:55:38 +05:30
}
.langTriggerContainer {
2020-05-24 04:38:24 +05:30
margin-top: 1px;
}
.langTrigger {
2020-05-24 04:38:24 +05:30
composes: footerItem;
}
.langTriggerIcon {
2020-05-24 04:38:24 +05:30
composes: globe from '~app/components/ui/icons.scss';
2020-05-24 04:38:24 +05:30
position: relative;
bottom: 1px;
font-size: 11px;
margin-right: 3px;
}