如何在我的React项目中使用SCSS全局变量和mixins?

时间:2019-03-09 16:00:33

标签: css reactjs sass

我的global.scss文件中有此变量:

$orange: #ee6123;

我想在我组件的样式表中使用它(在header.scss中):

.header { background: $orange; }

全局样式表位于/static/css/global.scss中,而组件样式表位于src/components/Header/index.scss中。全局样式表包含在我的基本src/index.jsx文件中。组件样式表包含在src/components/Header/index.jsx中。有什么方法可以在组件样式表中使用$orange变量?

0 个答案:

没有答案