【发布时间】:2021-10-12 08:19:55
【问题描述】:
我想为所有 Input 组件设置默认的边框颜色,但它不起作用
这是我的 theme.js 文件:
import { extendTheme } from "@chakra-ui/react";
const config = {
initialColorMode: "light",
useSystemColorMode: false,
};
const theme = extendTheme({
config,
components: {
Input: {
borderColor: "teal",
},
},
});
export default theme;
【问题讨论】: