gpt4 book ai didi

css - 如何更改 Material UI 对话框边框的粗细和颜色?

转载 作者:行者123 更新时间:2023-11-28 19:11:26 26 4
gpt4 key购买 nike

您好,我正在尝试从 Material UI 向对话框添加外部框架。我正在尝试这样做,但什么也没发生:

overrides: {
MuiDialog :{
paper : {
borderWidth : 10,
borderRadius: 10,
borderColor : "#FFFFFF",
backgroundColor : "#101010"
}
}, .......

您知道在 MUI 主题中使用覆盖的方法吗?

谢谢

最佳答案

我看到的主要问题是您没有设置border-style。以下作品:

const theme = createMuiTheme({
overrides: {
MuiDialog: {
paper: {
borderWidth: 10,
borderRadius: 10,
borderColor: "#fff",
borderStyle: "solid",
backgroundColor: "#101010",
color: "#fff"
}
}
}
});

Edit Material demo

关于css - 如何更改 Material UI 对话框边框的粗细和颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59199951/

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