【功能优化】修复设置面板里暗黑主题的指向状态问题

pull/503/head
卢越 2024-08-19 17:31:57 +08:00
parent 4130b2fec5
commit fd4d080588
1 changed files with 2 additions and 2 deletions

View File

@ -9,9 +9,9 @@ const { getPrefixCls } = useDesign()
const prefixCls = getPrefixCls('theme-switch')
const Sun = useIcon({ icon: 'emojione-monotone:sun', color: '#fde047' })
const Sun = useIcon({ icon: 'emojione-monotone:crescent-moon', color: '#fde047' })
const CrescentMoon = useIcon({ icon: 'emojione-monotone:crescent-moon', color: '#fde047' })
const CrescentMoon = useIcon({ icon: 'emojione-monotone:sun', color: '#fde047' })
const appStore = useAppStore()