update pay function

This commit is contained in:
2025-11-23 18:48:12 +08:00
parent 13f8e2a4f1
commit 2fb12e0cc7
5 changed files with 611 additions and 0 deletions

View File

@@ -217,6 +217,32 @@ export const forumComponentStyles = {
},
},
// Select下拉框样式修复白色文字问题
Select: {
baseStyle: {
field: {
bg: forumColors.background.card,
color: forumColors.text.primary,
borderColor: forumColors.border.default,
_hover: {
borderColor: forumColors.border.light,
},
_focus: {
borderColor: forumColors.border.gold,
boxShadow: `0 0 0 1px ${forumColors.border.goldGlow}`,
},
// 修复下拉选项颜色
option: {
bg: forumColors.background.card,
color: forumColors.text.primary,
},
},
icon: {
color: forumColors.text.primary,
},
},
},
// 标签样式
Tag: {
variants: {