Ilyas Hallak
4c744e6d10
fix: Add comprehensive width constraints to NativeWebView CSS
Added multiple CSS rules to prevent content overflow:
Universal rules:
- * { max-width: 100%; box-sizing: border-box; }
HTML/Body:
- overflow-x: hidden on both html and body
- width: 100% to enforce viewport width
- word-wrap and overflow-wrap: break-word on body
Pre blocks:
- max-width: 100%
- white-space: pre-wrap (allows wrapping)
- word-wrap: break-word
Viewport meta:
- Added maximum-scale=1.0, user-scalable=no to prevent zooming issues
The native iOS 26+ WebView handles width differently than WKWebView,
requiring explicit overflow and width constraints in CSS.
2025-10-10 20:18:38 +02:00
..
2025-09-04 10:43:27 +02:00
2025-10-10 20:18:38 +02:00
2025-10-04 00:42:41 +02:00
2025-10-10 20:18:38 +02:00
2025-07-18 13:36:47 +02:00
2025-09-18 22:35:43 +02:00
2025-07-21 23:37:37 +02:00
2025-10-07 22:08:29 +02:00
2025-09-18 22:35:43 +02:00
2025-09-05 21:58:24 +02:00
2025-09-26 20:45:38 +02:00
2025-07-21 23:37:37 +02:00
2025-09-18 22:35:43 +02:00
2025-09-04 10:43:27 +02:00
2025-09-04 10:43:27 +02:00