Skip to content

Commit c81155c

Browse files
committed
pref(effect): update EffectViewer
Signed-off-by: 67au <oyy6745@gmail.com>
1 parent 5d7f6c1 commit c81155c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/components/shared/EffectViewer.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ const defaults: DefaultsOptions = {
1919
VChip: {
2020
size: 'small',
2121
rounded: 'lg',
22-
color: 'white',
23-
variant: 'outlined',
2422
},
2523
VListItem: {
2624
class: 'pa-2',
@@ -75,7 +73,7 @@ const defaults: DefaultsOptions = {
7573
</v-card-text>
7674
<div v-else class="d-flex flex-column ga-1 pa-2">
7775
<template v-for="[debuff, skills] in Array.from(debuffSkills)" :key="debuff">
78-
<v-card variant="tonal">
76+
<v-card class="border-md border-primary">
7977
<v-list-item density="compact" slim>
8078
<template v-slot:title>
8179
{{ $t('status.' + debuff) }}
@@ -116,7 +114,7 @@ const defaults: DefaultsOptions = {
116114
</v-card-text>
117115
<div v-else class="d-flex flex-column ga-1 pa-2">
118116
<template v-for="[buff, skills] in Array.from(buffSkills)" :key="buff">
119-
<v-card variant="tonal">
117+
<v-card class="border-md border-primary">
120118
<v-list-item density="compact" slim :title="$t('status.' + buff)">
121119
<template v-slot:prepend>
122120
<v-avatar size="24" :rounded="false" class="mr-1">

0 commit comments

Comments
 (0)