Abhinandankaushik opened a new issue, #157: URL: https://github.com/apache/datafusion-site/issues/157
### Description While reading the blog post **"Avoid Consecutive Partitions"** on mobile devices, some images are rendered extremely small and become difficult to read. However, other images in the same article render correctly and scale properly with the screen width. This creates an inconsistent reading experience on smaller screens. ### Blog URL https://datafusion.apache.org/blog/2025/12/15/avoid-consecutive-repartitions/ --- ## Problem On mobile view: - Some diagrams render **very small and unreadable** - Other diagrams **scale correctly and remain clearly visible** This suggests that images are not being rendered with a consistent responsive style. --- ## Example 1 — Image renders too small (Problem) When opened on mobile, this diagram appears very small and the text inside becomes difficult to read. <img width="601" height="845" alt="Image" src="https://github.com/user-attachments/assets/44494de5-62a7-4e06-98b7-e8b4be36b56b" /> --- ## Example 2 — Another image with the same issue This diagram also renders very small on mobile devices. <img width="376" height="605" alt="Image" src="https://github.com/user-attachments/assets/25d0a35b-8be9-4a46-81cc-d7a714e7c456" /> --- ## Example 3 — Correct rendering (Expected behavior) This image scales properly and remains readable on mobile screens. <img width="396" height="545" alt="Image" src="https://github.com/user-attachments/assets/074527c0-6b3d-4459-af79-1a890ca4705b" /> --- ## Expected Behavior All images should behave like the correctly rendered example and: - scale responsively - occupy an appropriate width of the container - remain readable on smaller screens Example CSS approach: ```css img { max-width: 100%; height: auto; } -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
