0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

🐛 Fixed small text in Gmail on Android for newsletters containing images

closes https://github.com/TryGhost/Team/issues/737

- without an explicit `width: auto` on images Gmail on Android will make not make the image responsive, instead it was keeping the 1200px intrinsic width of the image and shrinking other content around it to match
This commit is contained in:
Kevin Ansfield 2021-07-07 21:11:42 +01:00
parent 69bc5a9dfd
commit 3c9f5da39d

View file

@ -406,6 +406,7 @@ figure blockquote p {
.kg-image-card img {
display: block;
margin: 0 auto;
width: auto;
height: auto !important;
}