Browse Source

Respect the alignment specified by the image directive

pull/7520/head
Kaylynn Morgan 3 years ago
committed by Rapptz
parent
commit
a317ceb44a
  1. 9
      docs/_static/style.css

9
docs/_static/style.css

@ -1147,6 +1147,15 @@ table.docutils tbody tr td ol.last {
margin-bottom: 0;
}
/* added when the `align` attribute is specified in the `image` directive */
main img.align-left {
margin-left: .5em;
}
main img.align-right {
margin-right: .5em;
}
.align-default {
text-align: left !important;
}

Loading…
Cancel
Save