Bugfix: Make sure images don't flow beyond edge of page

This commit is contained in:
Starbeamrainbowlabs 2016-11-24 07:17:36 +00:00
parent 388cab99d9
commit 743028ab10
2 changed files with 2 additions and 0 deletions

View File

@ -211,6 +211,7 @@ input[type=button], input[type=submit] { cursor: pointer; }
.image-controls li { display: inline-block; margin: 5px; padding: 5px; }
.link-display { margin-left: 0.5rem; }
audio, video, img { max-width: 100%; }
figure:not(.preview) { display: inline-block; }
figure:not(.preview) > :first-child { display: block; }
figcaption { text-align: center; }

View File

@ -36,6 +36,7 @@ input[type=button], input[type=submit] { cursor: pointer; }
.image-controls li { display: inline-block; margin: 5px; padding: 5px; }
.link-display { margin-left: 0.5rem; }
audio, video, img { max-width: 100%; }
figure:not(.preview) { display: inline-block; }
figure:not(.preview) > :first-child { display: block; }
figcaption { text-align: center; }