Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/LukasJoswiak/etch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Joswiak <lukas@lukasjoswiak.com>2022-10-13 07:21:32 +0300
committerGitHub <noreply@github.com>2022-10-13 07:21:32 +0300
commit02901930194cf3fc1382c088158654283b795e41 (patch)
treec60477e8e6b5762b8a591d8e501e78cc96cbe32a
parent0a8754ea1154a8b676a550e4ea347132d42938b2 (diff)
Wrap long strings to prevent horizontal scroll (#47)
This is mainly useful for long URLs which could otherwise cause a horizontal scroll bar to appear on low width screens.
-rw-r--r--assets/css/main.css1
1 files changed, 1 insertions, 0 deletions
diff --git a/assets/css/main.css b/assets/css/main.css
index 7f77ce4..fd18730 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -15,6 +15,7 @@ body {
margin: 0 auto;
padding: 0 16px;
line-height: 1.6;
+ overflow-wrap: break-word;
}
header#banner {