1
Fork 0

Make the footer as dark as the navbar

This commit is contained in:
Jake Howard 2019-03-16 15:18:41 +00:00
parent 918e1eaa2b
commit 08b0bb05ae
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 5 additions and 4 deletions

View file

@ -1,4 +1,4 @@
<footer class="bg-light p-5 {{ if eq .IsHome false }}mt-5{{ end }}">
<footer class="p-5 {{ if eq .IsHome false }}mt-5{{ end }}">
<div class="container">
<div class="row">
<div class="col-sm-6">

View file

@ -129,13 +129,14 @@ footer {
bottom: 0;
width: 100%;
height: 110px;
color: $gray-700;
color: lighten($black, 50);
background-color: $black;
a {
color: $gray-700;
color: inherit;
&:hover {
color: $black;
color: lighten($black, 75);
}
}
}