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

32 lines
689 B
SCSS
Raw Normal View History

2021-05-10 12:01:19 +00:00
.footer {
2021-05-10 13:07:40 +00:00
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;
a {
color: $text-color-white;
margin-left: 10px;
}
}
&__social {
display: flex;
align-items: center;
&-link {
fill: $text-color-white;
margin: 0 10px;
@include transition;
&:hover {
fill: $main-color;
}
}
2021-05-10 12:01:19 +00:00
}
}