Skip to content

Commit

Permalink
Apply colors to footer component
Browse files Browse the repository at this point in the history
  • Loading branch information
MTRNord committed Jun 4, 2024
1 parent 258ac4c commit 144299d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions sass/components/_footer.scss
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
@use "../helpers/media";
@use "../helpers/colors";

.site-footer {
position: relative;
z-index: 1;
background-color: #000;
background-color: colors.$black;
width: 100%;
display: flex;
align-items: center;
flex-direction: column;
padding: 30px 40px;

a {
color: #999;
color: colors.$footer-grey;
text-decoration: none;
margin-inline: .8rem;
}
Expand Down Expand Up @@ -53,11 +54,11 @@
}

a:hover {
color: #fff;
color: colors.$white;
}

p {
margin-top: 20px;
color: #999;
color: colors.$footer-grey;
}
}

0 comments on commit 144299d

Please sign in to comment.