Limit width of blog pages to something readable

This commit is contained in:
Anna Sidwell 2019-11-14 02:24:56 +00:00
parent ab31c1902e
commit b2d8d569a6
2 changed files with 5 additions and 1 deletions

View File

@ -24,7 +24,7 @@
<p><em>{{ page.date | date: '%B %d, %Y' }}</em></p>
</header>
<section class="wrapper style5">
<div class="inner">
<div class="inner inner--text">
{{ content }}

View File

@ -206,6 +206,10 @@
}
}
> .inner--text {
max-width: 45rem;
}
&.alt {
padding: 0;
}