ソースを参照

fix(style): preventing long strings from overflowing (#5934) (#6507)

bubble
Francesco Franchina 3年前
committed by GitHub
コミット
4b2fddd8ed
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更3行の追加1行の削除
  1. +3
    -1
      src/style/_markdown.scss

+ 3
- 1
src/style/_markdown.scss ファイルの表示

@@ -1,6 +1,9 @@
.markdown, .renderedMarkdown {
p, pre {
margin: 1em auto;

word-break: break-all; /* Fallback trick */
word-break: break-word;
}
pre {
color: black;
@@ -8,7 +11,6 @@
white-space: pre-wrap;
background: none;
padding: 0px;
overflow-wrap: break-word;
}

code {


読み込み中…
キャンセル
保存