From 9a3fe5caa5c9623f581b4149d13615cb048b5392 Mon Sep 17 00:00:00 2001 From: Nate Weaver Date: Fri, 13 Mar 2020 21:36:16 -0500 Subject: [PATCH] Add a max-width to body --- iOS/Resources/styleSheet.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/iOS/Resources/styleSheet.css b/iOS/Resources/styleSheet.css index b5bd49dee..4a304f933 100644 --- a/iOS/Resources/styleSheet.css +++ b/iOS/Resources/styleSheet.css @@ -6,13 +6,17 @@ body { margin-top: 3px; margin-bottom: 20px; - margin-left: 20px; - margin-right: 20px; + margin-left: auto; + margin-right: auto; + padding-left: 20px; + padding-right: 20px; word-wrap: break-word; word-break: break-word; -webkit-hyphens: auto; -webkit-text-size-adjust: none; + + max-width: 44em; } a {