Skip to content

Commit ce4079a

Browse files
style: improve screenshot layout with flex containers and responsive sizing
1 parent e6a5430 commit ce4079a

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

README.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -245,16 +245,24 @@ Now when you visit your app over HTTPS (via Safari), iOS will trust the cert, an
245245
246246
## Screenshots
247247
248-
<p align="center" style="display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin: 20px 0;">
249-
<div style="width: 100%; max-width: 800px; text-align: center;">
250-
<h4>Desktop View</h4>
251-
<img src="./screenshots/desktop.png" alt="WellSaid Desktop View" style="width: 100%; max-width: 800px; box-shadow: 0 4px 8px rgba(0,0,0,0.2); border-radius: 8px;"/>
248+
<div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin: 20px 0;">
249+
<div style="flex: 1; min-width: 300px; max-width: 600px; text-align: center;">
250+
<h4>Desktop</h4>
251+
<img
252+
src="./screenshots/desktop.png"
253+
alt="WellSaid Desktop View"
254+
style="width: 100%; max-width: 100%; height: auto; box-shadow: 0 4px 8px rgba(0,0,0,0.2); border-radius: 8px;"
255+
/>
252256
</div>
253-
<div style="width: 100%; max-width: 320px; text-align: center;">
254-
<h4>Mobile View</h4>
255-
<img src="./screenshots/mobile.png" alt="WellSaid Mobile View" style="width: 100%; max-width: 320px; box-shadow: 0 4px 8px rgba(0,0,0,0.2); border-radius: 8px;"/>
257+
<div style="flex: 0 0 auto; text-align: center; margin: 0 auto;">
258+
<h4>Mobile</h4>
259+
<img
260+
src="./screenshots/mobile.png"
261+
alt="WellSaid Mobile View"
262+
style="width: 200px; max-width: 100%; height: auto; box-shadow: 0 4px 8px rgba(0,0,0,0.2); border-radius: 8px;"
263+
/>
256264
</div>
257-
</p>
265+
</div>
258266
259267
## License
260268

0 commit comments

Comments
 (0)