28 lines
500 B
SCSS
Executable File
28 lines
500 B
SCSS
Executable File
.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;
|
|
}
|
|
}
|
|
}
|
|
}
|