From b3fab506bf47a40d32485a575d37ae8514fe829e Mon Sep 17 00:00:00 2001
From: Jared Sturdy <jsturdy@users.noreply.github.com>
Date: Mon, 21 Sep 2020 12:46:14 +0000
Subject: [PATCH] [bugfix] Fix problem with pagination from wrapped post titles fix (#407)

---
 assets/scss/_content.scss |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/assets/scss/_content.scss b/assets/scss/_content.scss
index ad8ef76..d4f7b22 100644
--- a/assets/scss/_content.scss
+++ b/assets/scss/_content.scss
@@ -79,9 +79,6 @@
     padding: 0;
     li {
       font-size: 1.8rem;
-      @media only screen and (min-width : 768.1px) {
-        display: flex;
-      }
       @media only screen and (max-width : 768px) {
         margin: 1.6rem 0 1.6rem 0;
       }
@@ -109,6 +106,13 @@
       }
     }
   }
+  ul:not(.pagination) {
+    li {
+      @media only screen and (min-width : 768.1px) {
+        display: flex;
+      }
+    }
+  }
 }
 
 .centered {

--
Gitblit v1.10.0