diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-05-10 19:06:07 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-05-11 21:33:18 -0400 |
commit | dad65f11e7c34ec652df6971709c0d496947d6f6 (patch) | |
tree | 5ab27696319d99a464df7ebe44373eaf0ba8fa37 /ext/css | |
parent | 6f5d194b525119f15f0ea964983cac8714d22cfe (diff) |
Improve internal page overflow (#1660)
* Improve overflow of internal pages
* Improve wrapping of the Origin: example text
Diffstat (limited to 'ext/css')
-rw-r--r-- | ext/css/settings.css | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/css/settings.css b/ext/css/settings.css index 9a0e0a8b..b7598121 100644 --- a/ext/css/settings.css +++ b/ext/css/settings.css @@ -248,7 +248,7 @@ a.heading-link-light { overflow-y: scroll; position: relative; align-items: stretch; - justify-content: center; + justify-content: flex-start; } .content-left { flex: 1 1 0; @@ -257,7 +257,7 @@ a.heading-link-light { z-index: 5; } .content-center { - flex: 1 1 auto; + flex: 0 1 auto; width: var(--content-width); padding: 0 var(--main-content-padding); max-width: var(--content-width); @@ -2310,6 +2310,9 @@ input[type=number].dictionary-priority { .no-wrap { white-space: nowrap; } +.overflow-wrap-anywhere { + overflow-wrap: anywhere; +} /* Environment-specific display */ |