禁則処理がおかしい
Closed this issue · 1 comments
fumikito commented
句点や鍵括弧がわかれてる。
原因は多分これ。
/* line 25, ../scss/_custom.scss */
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
word-break: break-all;
}
break-word
にすると直る。
もし均等割付けにしたかったらこう。
*{
word-break: break-word;
text-align: justify;
text-justify: inter-ideograph;
}
megane9988 commented
対応!