From 1a029dcfadae336a3007293ea822d3d9b90fb487 Mon Sep 17 00:00:00 2001 From: Yamboy1 Date: Sat, 18 Jan 2020 20:33:12 +1300 Subject: [PATCH] Allow content to resize a bit. See commit description With this change, the default size of content in the new text format is increased a bit, but the content will also increase in size to try and fit all its lines properly. This is especially useful with stuff like guitar tab which looks terrible if it's wrapped --- ui/scss/component/_main.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/scss/component/_main.scss b/ui/scss/component/_main.scss index 5b410246b..c7f476ac8 100644 --- a/ui/scss/component/_main.scss +++ b/ui/scss/component/_main.scss @@ -102,7 +102,10 @@ } .main__document-wrapper { - width: 40em; + max-width: 100%; + min-width: 80%; + /* margin: auto needs a set width */ + width: 0; margin: auto; margin-bottom: var(--spacing-xlarge);