diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-04-13 16:36:08 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-04-13 16:36:08 -0700 |
commit | a6634ec45d24889d07ed8243b2c7cdc98ac6a115 (patch) | |
tree | 92d8affcd9b7c7bfdbb9d55bcc72e2bf519195da | |
parent | f917c426a090ceed905cc18d3461c47756a3deab (diff) | |
download | voidsky-a6634ec45d24889d07ed8243b2c7cdc98ac6a115.tar.zst |
Update bskyweb html styles
-rw-r--r-- | bskyweb/templates/base.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html index 05c9becce..28b92958e 100644 --- a/bskyweb/templates/base.html +++ b/bskyweb/templates/base.html @@ -69,11 +69,19 @@ text-decoration: underline; } + /* Styling hacks */ + *[data-word-wrap] { + word-break: break-word; + } + /* ProseMirror */ .ProseMirror { font: 18px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; min-height: 140px; } + .ProseMirror-dark { + color: white; + } .ProseMirror p { margin: 0; } |