From d7ff20a832b7ea3f6513bb255e5763482bd9f0e3 Mon Sep 17 00:00:00 2001
From: Alexander Bilz <mail@alexbilz.com>
Date: Mon, 05 Apr 2021 14:12:15 +0000
Subject: [PATCH] Fixes an issue where long links overflow page width

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

diff --git a/assets/css/style.css b/assets/css/style.css
index 8a592d2..852e54e 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -369,8 +369,6 @@
     text-decoration: none;
     letter-spacing: 1px;
     color: var(--heading-color);
-    overflow-wrap: break-word;
-    word-wrap: break-word;
 }
 
 .post .post-title a:hover {
@@ -381,6 +379,8 @@
     text-decoration: none;
     letter-spacing: 1px;
     color: #2660ab;
+    overflow-wrap: break-word;
+    word-wrap: break-word;
 }
 
 .post .post-content a:hover {

--
Gitblit v1.10.0