diff options
-rw-r--r-- | layouts/partials/footer.html | 2 | ||||
-rw-r--r-- | static/scss/_footer.scss | 14 |
2 files changed, 5 insertions, 11 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index fabde24..73ed61d 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -1,9 +1,11 @@ <footer> + <!-- <div id="gifs"> {{ range .Site.Params.gifs}} {{ . | safeHTML }} {{ end }} </div> + --> <div id="copyright"> {{ .Site.Copyright | safeHTML }} </div> diff --git a/static/scss/_footer.scss b/static/scss/_footer.scss index a7ef8af..69cace6 100644 --- a/static/scss/_footer.scss +++ b/static/scss/_footer.scss @@ -1,17 +1,9 @@ footer { - #gifs { - max-width: 800px; - display: flex; - align-items: center; - justify-content: center; - flex-wrap: wrap; - margin: 0.8rem auto; - gap: 1rem; - } + max-width: 95%; + margin: auto; + #copyright { text-align: center; line-height: 1.1; - font-size: 1rem; } } - |