This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Netflix-Clone/src/static/sass/layout/_footer.scss
2018-11-20 00:21:26 -05:00

28 lines
462 B
SCSS

.footer {
background-color: $color-background;
padding-top: 15rem;
padding-bottom: 4rem;
grid-column: 1 / 13;
text-align: center;
@include responsive(phone) {
padding-top: 10rem;
}
&__copyright {
color: #fff;
font-size: 1.8rem;
&--link {
text-decoration: none;
color: $color-red-2;
transition: all .3s;
}
&--link:hover {
color: orange;
}
}
}