Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
josStorer committed Mar 12, 2024
1 parent c4a537f commit d53d8b8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/content-script/styles.scss
Expand Up @@ -478,7 +478,7 @@
margin-bottom: 0;
font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
font-size: 12px;
word-wrap: normal;
word-wrap: break-word;
background-color: var(--code-background-color);
}

Expand Down Expand Up @@ -874,8 +874,8 @@
.markdown-body pre > code {
padding: 0;
margin: 0;
word-break: normal;
white-space: pre;
word-break: break-word;
white-space: pre-wrap;
background: transparent;
border: 0;
}
Expand All @@ -886,7 +886,7 @@

.markdown-body .highlight pre {
margin-bottom: 0;
word-break: normal;
word-break: break-word;
}

.markdown-body .highlight pre,
Expand All @@ -906,7 +906,7 @@
margin: 0;
overflow: visible;
line-height: inherit;
word-wrap: normal;
word-wrap: break-word;
background-color: transparent;
border: 0;
}
Expand Down

0 comments on commit d53d8b8

Please sign in to comment.