Skip to content

Commit

Permalink
fix: Fix wrapping in code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
TEParsons committed Apr 1, 2024
1 parent 0f7b80d commit fe441fa
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions base/torillic.css
Original file line number Diff line number Diff line change
Expand Up @@ -352,12 +352,6 @@ td, th {
}

/** Blocks **/
pre, /* generic HTML */
pre.md-meta-block /* typora */
{
background-color: var(--green);
padding: 6pt;
}

blockquote {
background-color: var(--green);
Expand All @@ -372,11 +366,13 @@ blockquote blockquote {
}

pre, /* generic HTML */
.md-fences /* typora */
.md-fences, /* typora */
.md-meta-block
{
background: var(--green);
padding: 12pt;
break-inside: avoid;
white-space: normal;
}

/** Images **/
Expand Down

0 comments on commit fe441fa

Please sign in to comment.