How to customize text size? #2931
-
Updated the latest version today and found that the font of the article has become larger. I looked at the styles config in the documentation and found that there are only Is it possible to set |
Beta Was this translation helpful? Give feedback.
Answered by
Mister-Hope
Mar 20, 2023
Replies: 1 comment 1 reply
-
Oh I got you, font size you mean. The font-size on pc layout is increased to 18px, and you can revert the previous outlook by adding: // .vuepress/styles/index.scss
@media (min-width: 1440px) {
body {
font-size: 16px;
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Mister-Hope
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What do you mean with "the font of the article has become larger"Oh I got you, font size you mean.
The font-size on pc layout is increased to 18px, and you can revert the previous outlook by adding: