Skip to content

Commit

Permalink
CSS: Don't allow left-aligned image to float into following section
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed Jan 6, 2023
1 parent 7d8f9eb commit 5683937
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/insipid_sphinx_theme/insipid/static/insipid.css_t
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ a.headerlink {
}

blockquote {
clear: left;
clear: inline-start;
margin: 10px 0;
border: 1px solid #0002;
border-left-width: 7px;
Expand Down Expand Up @@ -227,6 +227,10 @@ section > hr.docutils {
margin-bottom: 0;
}

section, .section {
clear: inline-start;
}

/* -- hyperlink styles ------------------------------------------------------ */

a {
Expand Down

0 comments on commit 5683937

Please sign in to comment.