gpt4 book ai didi

gatsby - Gatsby 中 Chakra-ui 的扩展主题

转载 作者:行者123 更新时间:2023-12-04 15:12:49 32 4
gpt4 key购买 nike

我在 Gatbsy 工作,当我尝试使用 gatsby-plugin-chakra-ui 文件夹中的影子 theme.js 文件覆盖核心脉轮主题时,它没有影响。

有什么想法吗?我正在使用

import { extendTheme } from '@chakra-ui/core'

const theme = extendTheme({
components: {
Input: {
variants: {
outline: {
borderColor: 'blue.500',
},
},
},
},
})

编辑:修改主题适用于 Button 组件,但不适用于 Input

最佳答案

要自定义 Input 元素字段,只需在 outline 对象中添加 field 属性,如下所示:

import { extendTheme } from '@chakra-ui/core'

const theme = extendTheme({
components: {
Input: {
variants: {
outline: {
field: {
borderColor: 'blue.500',
},
},
},
},
},
})

关于gatsby - Gatsby 中 Chakra-ui 的扩展主题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64888390/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com