From ecebec2da601d0f951a3310bbd70aa4972a33413 Mon Sep 17 00:00:00 2001
From: Jorik Schellekens <joriksch@gmail.com>
Date: Tue, 1 Sep 2020 11:53:16 +0200
Subject: [PATCH] Fix line wraps and scrollbars

---
 src/components/CreateLinkTile.scss | 4 ++++
 src/index.scss                     | 3 +--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/components/CreateLinkTile.scss b/src/components/CreateLinkTile.scss
index 8222c3c..ada3856 100644
--- a/src/components/CreateLinkTile.scss
+++ b/src/components/CreateLinkTile.scss
@@ -35,4 +35,8 @@ limitations under the License.
     > a {
         color: $foreground;
     }
+
+    h1 {
+        word-break: break-all;
+    }
 }
diff --git a/src/index.scss b/src/index.scss
index a2482e8..2c9c506 100644
--- a/src/index.scss
+++ b/src/index.scss
@@ -39,7 +39,7 @@ body,
 
     color: $font;
 
-    overflow: scroll;
+    overflow: auto;
 }
 
 h1 {
@@ -47,7 +47,6 @@ h1 {
     font-size: 24px;
     line-height: 32px;
     text-align: center;
-    word-break: break-all;
 }
 
 a {
-- 
GitLab