diff --git a/layout/article-content.ejs b/layout/article-content.ejs index 9955e09..922e2e5 100644 --- a/layout/article-content.ejs +++ b/layout/article-content.ejs @@ -16,15 +16,21 @@
<% if (page.prev) { %>
-
<% } %> <% if (page.next) { %>
-
<% } %> diff --git a/source/css/layout/article-content.styl b/source/css/layout/article-content.styl index 2b75ea6..9284db1 100644 --- a/source/css/layout/article-content.styl +++ b/source/css/layout/article-content.styl @@ -45,15 +45,31 @@ .article-nav { - height 40px - margin 40px 0 + height: 40px; + margin: 40px 0; .article-prev { - float left + float: left; } .article-next { - float right + float: right; + } + + .post-nav-item { + display: none; + + +ils-tablet() { + display: inline-block; + } + + } + + .post-nav-title-item { + + +ils-tablet() { + display: none; + } } }