From 15f4ff8220da8a35b7ee663e3b77d994aee0cf13 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me>
Date: Sat, 21 Oct 2023 14:02:15 -0400
Subject: [PATCH] Fixed P elements overflowing

---
 CHANGELOG.md        | 1 +
 static/css/main.css | 4 ++++
 2 files changed, 5 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index a7d7cb348..9417125de 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,6 +14,7 @@
 * Several root settings in `/hugo.toml` were being overridden such as `paginate`
     these should now be fixed.
 * Fixed the CSS so the `navbar` wont overflow under very low resolutions.
+* Fixed certain text inside `<p>` tags overflowing and distorting the layout.
 
 ## 2.0.0
 
diff --git a/static/css/main.css b/static/css/main.css
index f712c1522..f0815f65c 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -601,6 +601,10 @@ article header {
     margin-bottom: 3rem;
 }
 
+p {
+  overflow: scroll;
+}
+
 @-webkit-keyframes nprogress-spinner{
     0%{
         -webkit-transform:rotate(0)
-- 
GitLab