我正在使用流畅的用户界面,其中使用Griffel作为样式。当我尝试提供边框时:“none”将抛出字符串无法赋值给undefined的错误
import {makeStyles} from "@fluentui/react-components";
export const settingsButtonStyle = makeStyles({
root: {
border: "none",
background: "#E5E5E5",
marginRight: "13px"
},
rootHovered: {
background: "#E5E5E5",
}
});
1条答案
按热度按时间yx2lnoni1#
GriffelJS试图创建原子CSS类,所以它们不支持CSS简写(如边框或背景)。但是有一个名为
shorthands
的帮助函数来管理其中的一些。背景不包括在帮助函数中,所以你应该使用特定的CSS属性。所以你的代码应该如下所示:您可以在GriffelJS的文档shorthands - GriffelJS中找到有关速记的更多信息