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:
parent
69bc5a9dfd
commit
3c9f5da39d
1 changed files with 1 additions and 0 deletions
|
@ -406,6 +406,7 @@ figure blockquote p {
|
|||
.kg-image-card img {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
width: auto;
|
||||
height: auto !important;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue