Y1chenYao / typora-mint-theme

A fresh theme for typora. Light/Dark mode supported.
https://theme.typora.io/theme/Mint/
72 stars 21 forks source link

Justified text #3

Closed redriel closed 2 years ago

redriel commented 2 years ago

Hello, I tried to overwrite the CSS in order to justify the text using this theme. Usually overwriting works with other themes, but with the mint theme the text remains right aligned. Do you have any suggestions?

(谷歌翻译) 您好,我尝试覆盖 CSS 以证明使用此主题的文本的合理性。 通常覆盖适用于其他主题,但对于薄荷主题,文本保持右对齐。 你有什么建议吗?

Y1chenYao commented 2 years ago

What content do you want to justify? I don't really know how to justify the contents in the text body.

redriel commented 2 years ago

Hi, I figured out how to justify the text with your theme. I simply overrode some properties in the base.user.css as it follows:

#write {
  max-width: 800px !important;
  text-align: justify !important;
}

#write p{
  text-align:justify !important;
}