feat: add inline image CSS class

Regular images get a `block` display to be centered.
This allows vertically aligned inline images.

Related: #314
main
welpo 9 months ago
parent aef49bb225
commit 6a4f4244e0
No known key found for this signature in database
GPG Key ID: A2F978CF4EC1F5A6

@ -20,6 +20,11 @@ img {
height: auto; height: auto;
} }
img.inline {
display: inline;
vertical-align: middle;
}
figure h4 { figure h4 {
margin: 0; margin: 0;
margin-bottom: 1em; margin-bottom: 1em;

Loading…
Cancel
Save