menu: fix footer padding #637

This commit is contained in:
Sören Weber 2023-09-05 23:09:35 +02:00
parent a7c22bc579
commit 196188b7f3
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D
3 changed files with 30 additions and 17 deletions

View file

@ -18,6 +18,14 @@ This document shows you what's new in the latest release. For a detailed list of
---
## 5.21.0 (2023-09-03) {#5210}
- {{% badge style="note" title=" " %}}Change{{% /badge %}} We made changes to the menu footer. If you have your `menu-footer.html` [partial overridden]({{%relref "basics/customization" %}}), you may have to review the styling (eg. margins/paddings) in your partial.
This change was made to simplify common use cases. Care was taken not to break your existing overwritten footer.
---
## 5.20.0 (2023-08-26) {#5200}
- {{% badge style="note" title=" " %}}Change{{% /badge %}} The theme has updated its Swagger dependency to 5.4.1 for the [`openapi` shortcode]({{% relref "shortcodes/openapi" %}}).

View file

@ -1,21 +1,5 @@
<style>
#footer {
font-size: .8125rem;
height: 6.25rem;
margin-left: auto;
margin-right: auto;
padding: 2rem 1rem;
text-align: center;
min-width: 14.375rem;
max-width: 18.75rem;
}
#footer p {
margin: 0;
}
</style>
<span class="github-buttons">
</span>
<span class="github-buttons"></span>
<p>Built with <a href="https://github.com/McShelby/hugo-theme-relearn" title="love"><i class="fas fa-heart"></i></a> by <a href="https://gohugo.io/">Hugo</a></p>
<script>
function githubButtonsScheme(){

View file

@ -257,6 +257,27 @@ dd {
padding: 0 1rem;
}
.footerFooter {
font-size: .8125rem;
padding-top: 2rem;
padding-bottom: .75rem;
text-align: center;
}
.footerFooter > * {
margin: 0 auto;
}
#footer > hr:first-child {
margin-top: 0;
}
/* increase specifity to override following #content-wrapper hr style */
#footer > hr:nth-child(n) {
margin-left: 0;
margin-right: 0;
}
#sidebar ul {
list-style: none;
padding: 0;