diff --git a/docs/default-theme-config/README.md b/docs/default-theme-config/README.md index cb26affb..257294b0 100644 --- a/docs/default-theme-config/README.md +++ b/docs/default-theme-config/README.md @@ -455,8 +455,8 @@ In fact, The `stylus constants override` should be completed before all Stylus f Start from `0.12.0`, we split `override.styl` into two APIs: `override.styl` and `style.styl`. If you wrote styles at `override.styl` in the past, e.g. ``` stylus -// override.styl -$textColor = red // stylus constants override +// .vuepress/override.styl +$textColor = red // stylus constants override. #my-style {} // your extra styles. ``` @@ -464,12 +464,12 @@ $textColor = red // stylus constants override You'll need to separate the style part to `style.styl`: ``` stylus -// override.styl, SHOULD ONLY contain "stylus constants override". +// .vuepress/override.styl, SHOULD ONLY contain "stylus constants override". $textColor = red ``` ``` stylus -// style.styl, your extra styles +// .vuepress/style.styl, your extra styles. #my-style {} ``` diff --git a/docs/zh/default-theme-config/README.md b/docs/zh/default-theme-config/README.md index fb8271b3..fd7985f4 100644 --- a/docs/zh/default-theme-config/README.md +++ b/docs/zh/default-theme-config/README.md @@ -420,12 +420,12 @@ $codeBgColor = #282c34 ### 将你的样式迁移到 `style.styl` -事实上,`stylus 常量的 override` 应该在编译所有 Stylus 文件之前完成;而用户额外的 CSS 样式由应该被生成在最终样式文件的末尾。因此这两项职责不应该由同一个 stylus 文件来完成。 +事实上,`stylus 常量的 override` 应该在编译所有 Stylus 文件之前完成;而用户额外的 CSS 样式应该生成在最终样式文件的末尾。因此,这两项职责不应该由同一个 stylus 文件来完成。 从 `0.12.0` 开始,我们将 `override.styl` 拆分为两个 API:`override.styl` 和 `style.styl`。如果你过去在 `override.styl` 中书写了样式,如: ``` stylus -// override.styl +// .vuepress/override.styl $textColor = red // stylus 常量的 override #my-style {} // 你的样式 @@ -434,12 +434,12 @@ $textColor = red // stylus 常量的 override 你将需要将你的样式部分分离到 `style.styl`: ``` stylus -// override.styl,应该仅仅包含 stylus 常量的 override +// .vuepress/override.styl,应该仅仅包含 stylus 常量的 override $textColor = red ``` ``` stylus -// style.styl,你的样式 +// .vuepress/style.styl,你的样式 #my-style {} ```