27 lines
432 B
SCSS
27 lines
432 B
SCSS
// Footer ================
|
|
.footer {
|
|
padding: 30px 0;
|
|
background: #000;
|
|
|
|
&_box {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.logo {
|
|
width: 200px;
|
|
height: 70px;
|
|
|
|
img {
|
|
@include ImgCon;
|
|
}
|
|
}
|
|
|
|
.copyright {
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
line-height: 32px;
|
|
color: #fff;
|
|
}
|
|
} |