ORIENT/themes/modern2/assets/css/components/2-layout/footer.scss

28 lines
500 B
SCSS
Raw Normal View History

2021-05-10 12:01:19 +00:00
.footer {
background: $text-light-black;
padding: 30px 0;
&__inner {
display: flex;
align-items: center;
justify-content: space-between;
}
&__copyright {
font-size: $h5-size;
line-height: $h5-height;
font-weight: 400;
color: $text-color-white;
}
&__social {
display: flex;
align-items: center;
&-link {
fill: $text-color-white;
margin: 0 10px;
@include transition;
&:hover {
fill: $main-color;
}
}
}
}