【发布时间】:2018-09-08 00:09:29
【问题描述】:
我安装了 gatsby cli 并创建了一个基本的 node / gatsby.js 项目。 教程说“Gatsby 使用 CSS 模块开箱即用。” 我还想使用此处描述的自定义 css 属性:https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_variables
(1) 我创建了src/layouts/variables.css 并放入带有自定义属性的css,例如:
:root {
--brand-color: #ff3333;
}
(2) 然后在src/layouts/index.css我在css文件的最顶部添加了@import './variables.css'。
(3) 由于上述步骤中的@import,我在gatsby-config.js 文件中安装并添加了postcss-import 作为第一个插件。不确定这是否正确,因为它不像其他插件那样命名为“gatsby-plugin-*”。
(4) 在我的页脚组件 (src/components/Footer) 我有 index.js 和 index.module.css。在index.module.css 我放了:
.footer {
color: var(--brand-color);
}
... 认为 --brand-color 将通过 src/variables.css -> src/index.css -> src/index.js -> layouts/index.js -> 我的页脚组件导入级联。
但是当我运行 gatsby-develop 时,它会说:
./src/components/Footer/index.module.css 中的警告
postcss-custom-properties: /path/to/src/components/Footer/index.module.css:2:3: 变量 '--brand-color' 未定义并且没有后备使用。
如何解决此错误?它不允许网站正常显示。
【问题讨论】:
标签: css postcss css-modules gatsby css-variables