Add forward/backward navigation

This commit is contained in:
2020-04-12 14:30:28 -04:00
parent 68fd13176d
commit 6228cfd18e
3 changed files with 42 additions and 2 deletions

View File

@ -94,4 +94,21 @@ blockquote {
margin-left: 0;
padding-left: 1.8rem;
border-left: 5px solid $gray;
}
}
.post-nav {
/* Insert your custom styling here. Example:
font-size: 14px;
*/
display: flex;
margin-top: 1em;
margin-bottom: 1em;
}
.post-nav div {
/* flex-grow, flex-shrink, flex-basis */
flex: 1 1 0;
}
.post-nav-next {
text-align: right;
}