Skip to content

Commit

Permalink
fix: image float breaks quotes and prompts (mmistakes#1449)
Browse files Browse the repository at this point in the history
  • Loading branch information
cotes2020 committed Jan 2, 2024
1 parent 5234511 commit ea2d238
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions _sass/addon/commons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ blockquote {
border-left: 5px solid var(--blockquote-border-color);
padding-left: 1rem;
color: var(--blockquote-text-color);
display: flex;

&[class^='prompt-'] {
border-left: 0;
Expand Down Expand Up @@ -641,12 +642,12 @@ main {

.left {
float: left;
margin: 0.75rem 1rem 1rem 0 !important;
margin: 0.75rem 1rem 1rem 0;
}

.right {
float: right;
margin: 0.75rem 0 1rem 1rem !important;
margin: 0.75rem 0 1rem 1rem;
}

/* --- Overriding --- */
Expand Down

0 comments on commit ea2d238

Please sign in to comment.