Set a max-width for Markdown images (#9230)

Prevents images from overflowing in tavern chat, guild sidebars, tasks,
and anywhere else using Markdown

Closes https://github.com/HabitRPG/habitica/issues/9171
This commit is contained in:
Stephy 2017-10-18 15:47:16 -05:00 committed by Sabe Jones
parent 9dc9faa70d
commit 1af42aa7fe

View file

@ -28,4 +28,8 @@
text-decoration: underline;
}
}
}
img {
max-width: 100%;
}
}