diff options
| author | winter | 2025-03-15 20:32:47 +0000 |
|---|---|---|
| committer | winter | 2025-03-15 20:32:47 +0000 |
| commit | d8e440b1998e5c3e33445f2ec020d261fc7fa714 (patch) | |
| tree | f2328ed694138d6aa4d3fa179073df74b8d494e1 | |
| parent | 801f0d45d734c69ec96e9bbbc33a3f63b0879c22 (diff) | |
fix line wrapping behaviour finally!!!!
| -rw-r--r-- | static/note.css | 4 | ||||
| -rw-r--r-- | static/pages.css | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/static/note.css b/static/note.css index bdb1422..a224508 100644 --- a/static/note.css +++ b/static/note.css @@ -70,10 +70,8 @@ article.note { .content { font-size: var(--font-normal-size); padding: var(--spacing-half) 0; - hyphens: auto; overflow-x: hidden; - text-overflow: ellipsis; - line-break: anywhere; + overflow-wrap: break-word; .selected & { font-size: var(--font-big-size); } diff --git a/static/pages.css b/static/pages.css index f19a856..3f3e5ab 100644 --- a/static/pages.css +++ b/static/pages.css @@ -37,6 +37,8 @@ .pageContent { margin-top: var(--spacing-double); + overflow-x: hidden; + overflow-wrap: break-word; p, ul, |
