summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2019-05-04 20:59:36 +0100
committerDavid T. Sadler <davidtsadler@googlemail.com>2019-05-04 20:59:36 +0100
commit4c5e9bfa95125fe9a8905fbb388ad3cd2ee56daa (patch)
tree6b2b3153fa7775237f447123319e06a8e13be39c
parent7fff02967457b2a5bd6ad51552fef8c935bb2b30 (diff)
Stop scroll bars appearing on mobile devices because of long URLs
-rw-r--r--assets/css/style.css4
-rw-r--r--content/_index.md11
2 files changed, 10 insertions, 5 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index 3e7670a..94d37fe 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -176,6 +176,10 @@ footer {
opacity: .5;
}
+p.break-word {
+ overflow-wrap: break-word;
+}
+
@font-face {
font-family: 'Fira Code';
font-style: normal;
diff --git a/content/_index.md b/content/_index.md
index ad53afc..7b9c500 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -35,8 +35,9 @@ Recent posts.
Use the below urls in your RSS reader. The first is my main feed and contains all shows and posts. After that are feeds for just posts and individual shows. Lastly is my YouTube feed.
-**All Content:** {{< ref "/" "rss" >}}
-**Posts:** {{< ref "/posts" "rss" >}}
-**Learning Arch Linux:** {{< ref "/shows/learning-arch-linux" "rss" >}}
-**YouTube:** https://www.youtube.com/feeds/videos.xml?channel\_id=UCNWVuS\_-R6CsGG\_LtrF1jXg
-
+<p class="break-word">
+ <strong>All Content:</strong> {{< ref "/" "rss" >}}<br/>
+ <strong>Posts:</strong> {{< ref "/posts" "rss" >}}<br/>
+ <strong>Learning Arch Linux:</strong> {{< ref "/shows/learning-arch-linux" "rss" >}}<br/>
+ <strong>YouTube:</strong> https://www.youtube.com/feeds/videos.xml?channel\_id=UCNWVuS\_-R6CsGG\_LtrF1jXg
+</p>