Commit 158c18fe by CaIon

feat: add dark mode detection and styling enhancements to PersonalSetting and TopUp components

parent a5baba6b
...@@ -580,7 +580,7 @@ export function renderText(text, limit) { ...@@ -580,7 +580,7 @@ export function renderText(text, limit) {
export function renderGroup(group) { export function renderGroup(group) {
if (group === '') { if (group === '') {
return ( return (
<Tag size='large' key='default' color='orange' shape='circle' prefixIcon={<Users size={14} />}> <Tag size='large' key='default' color='orange' shape='circle'>
{i18next.t('用户分组')} {i18next.t('用户分组')}
</Tag> </Tag>
); );
...@@ -603,7 +603,6 @@ export function renderGroup(group) { ...@@ -603,7 +603,6 @@ export function renderGroup(group) {
color={tagColors[group] || stringToColor(group)} color={tagColors[group] || stringToColor(group)}
key={group} key={group}
shape='circle' shape='circle'
prefixIcon={<Users size={14} />}
onClick={async (event) => { onClick={async (event) => {
event.stopPropagation(); event.stopPropagation();
if (await copy(group)) { if (await copy(group)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment