Skip to content

Commit

Permalink
feat: change footer to a dark style
Browse files Browse the repository at this point in the history
  • Loading branch information
igobranco committed Dec 6, 2024
1 parent 4d820e8 commit fdbf6ae
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/_footer.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
$gray-footer: #eee !default;
$logo-color: #4e4e4e !default;
$footer-background-color: #232323 !default;
$footer-text: #d2d2d2 !default;
$logo-color: $footer-text;
$footer-social-icons: $footer-text;
$footer-links-navigation-color: $footer-text;

.footer-navigation {
background-color: $footer-background-color;
padding-top: 2rem;
padding-bottom: 2rem;
}
Expand All @@ -15,6 +19,7 @@ $logo-color: #4e4e4e !default;
}

.footer-links-navigation {
color: $footer-links-navigation-color;
flex-basis: 260px;
min-width: 200px;
font-size: 0.9rem;
Expand All @@ -34,7 +39,7 @@ $logo-color: #4e4e4e !default;
}

a {
color: black;
color: $footer-links-navigation-color;
}
}
}
Expand All @@ -45,6 +50,10 @@ $logo-color: #4e4e4e !default;
&__badge {
margin-right: 1.5rem;
}

a {
color: $footer-social-icons;
}
}

.footer-additional-logos {
Expand Down

0 comments on commit fdbf6ae

Please sign in to comment.