From 36d0d1963bcebd750b5271910bc66712110124b5 Mon Sep 17 00:00:00 2001
From: Alexander Bilz <mail@alexbilz.com>
Date: Wed, 27 Jan 2021 16:13:03 +0000
Subject: [PATCH] Fixes an issue where long titles intersect with the dates in archive

---
 assets/css/style.css |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/assets/css/style.css b/assets/css/style.css
index fddc94b..b4b2085 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -603,11 +603,16 @@
 
 .list-with-title .listing .listing-post .post-time {
     float: right;
+    display: inline-block;
+    max-width: 10%;
+    text-align: right;
     color: #C5C5C5;
 }
 
 .list-with-title .listing .listing-post a {
     color: #8F8F8F;
+    width: 90%;
+    display: inline-block;
 }
 
 .list-with-title .listing .listing-post a:hover {
@@ -962,6 +967,14 @@
     .theme-switch-item {
         float: none;
     }
+
+    .list-with-title .listing .listing-post .post-time {
+        max-width: 20%;
+    }
+    
+    .list-with-title .listing .listing-post a {
+        width: 80%;
+    }
 }
 
 /* Medium zoom */

--
Gitblit v1.10.0