Skip to content
Snippets Groups Projects
Verified Commit 27e7da60 authored by Jeffrey Phillips Freeman's avatar Jeffrey Phillips Freeman :boom:
Browse files

Merge branch 'upstream'

parents 72a0d7b6 bd42774b
No related branches found
No related tags found
No related merge requests found
Pipeline #2130 passed
......@@ -16,6 +16,9 @@
* Created type `page` and moved `/content/_index.md` to be that type. This
breaks backwards compatibility therefore we must bump major version
according to semantic versioning.
* Minor improvement to CSS so `page` types dont get clipped by the menu header.
* Added a container shortcode for use on `page` types to get left and right
margins.
## 1.1.0
......
......@@ -1964,7 +1964,7 @@ hr:after {
:root {
--ifm-navbar-background-color: var(--ifm-background-surface-color);
--ifm-navbar-height: 3.75rem;
--ifm-navbar-height: 4.75rem;
--ifm-navbar-item-padding-horizontal: 1rem;
--ifm-navbar-item-padding-vertical: 0.25rem;
--ifm-navbar-link-color: var(--ifm-font-base-color);
......@@ -3461,7 +3461,7 @@ body > div {
}
.main-wrapper {
flex: 1 0 auto;
margin-top: var(--ifm-navbar-height);
margin-top: calc(1em + var(--ifm-navbar-height));
}
@media (min-width:301px) {
.sidebar_25T_ {
......
<div class="container">
{{ .Inner | markdownify }}
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment