Skip to content

Commit

Permalink
layout fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dagnelies committed Nov 8, 2023
1 parent 9424f6d commit 62c85f4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
9 changes: 4 additions & 5 deletions _layouts/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,12 @@
{% include head.html %}

<body>
<div>
{% include gtm_body.html %}

{% include nav.html %}
{% include gtm_body.html %}
{% include nav.html %}

<main>
{{ content }}
</div>
</main>

{% include footer.html %}

Expand Down
9 changes: 7 additions & 2 deletions assets/css/beautifuljekyll.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,14 @@ body {
{% endif %}
overflow-wrap: break-word;
min-height: 100vh;
display: grid;
grid-template-rows: 1fr auto;
display: flex;
flex-direction: column;
}

body > main {
flex: 1;
}

p {
line-height: 1.5;
margin: 1.875rem 0;
Expand Down

0 comments on commit 62c85f4

Please sign in to comment.