我在全局 style.css 中有这个:
:root {
--font: {
font-family: "Source Sans Pro", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
}
...这在反应组件的 style.css 中:
.rightnav {
@apply --font;
float: right;
color: white;
}
在组件本身中:
import React from "react"
import cssModules from "react-css-modules"
import style from "./style.css"
render() {
return (
<ul>
<li className={style.rightnav}>Blog</li>
</ul>
)
}
我收到一个错误:没有为font
.