diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-15 08:04:15 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-15 08:04:15 -0800 |
| commit | c41af66cbb76c4c49269753d981b99905a679437 (patch) | |
| tree | 46ba27877b73ee41a4c125c88c9bc9360811ce0c /frontend/src/components/FeedItem.css | |
| parent | 6e28d1530aa08b878f5082bbcd85a95f84f830e8 (diff) | |
| download | neko-c41af66cbb76c4c49269753d981b99905a679437.tar.gz neko-c41af66cbb76c4c49269753d981b99905a679437.tar.bz2 neko-c41af66cbb76c4c49269753d981b99905a679437.zip | |
Fix horizontal scrolling on iPad and improve mobile responsiveness
Diffstat (limited to 'frontend/src/components/FeedItem.css')
| -rw-r--r-- | frontend/src/components/FeedItem.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/frontend/src/components/FeedItem.css b/frontend/src/components/FeedItem.css index 944b66a..876fc66 100644 --- a/frontend/src/components/FeedItem.css +++ b/frontend/src/components/FeedItem.css @@ -92,6 +92,16 @@ line-height: 1.5; font-size: 1rem; margin-top: 1rem; + overflow-wrap: break-word; + word-break: break-word; +} + +.item-description table, +.item-description pre, +.item-description code { + max-width: 100%; + overflow-x: auto; + display: block; } .item-description img { |
