我正在尝试慢慢地将Styled-Components引入我现有的代码库中,该代码库严重依赖于全局SASS变量(部分导入main.scss). 如何引用SCSS变量?以下不起作用: import React from 'react';import styled from 'styl
如何引用SCSS变量?以下不起作用:
import React from 'react'; import styled from 'styled-components'; const Button = styled.button` background-color: $color-blue; `; export default Button;
我是从错误的方式接近这个吗?
变量在.scss或.sass中起着非常重要的作用,但功能无法扩展到文件之外.相反,您必须创建一个单独的.js文件(例如:variable.js)并将所有变量定义为对象.