Skip to content

Commit 4c724a2

Browse files
fix(home): components text colors 🐛 (#1761)
1 parent d99056f commit 4c724a2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/modules/home/components/home.features.component.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
<v-col v-for="({ icon, title, text, color }, i) in features.data" :key="i" cols="12" md="4" data-aos="fade-up">
3131
<v-card class="pt-8 pb-2 px-4 rounded-xl" :flat="config.vuetify.theme.flat" :style="custom && custom.card ? custom.card : null">
3232
<div>
33-
<v-avatar :color="color ? color : 'primary'" size="88">
34-
<v-icon dark large>{{ icon }}</v-icon>
35-
</v-avatar>
33+
<v-btn icon :color="color ? color : 'primary'" width="88" height="88" class="text-white">
34+
<v-icon :icon="icon" large></v-icon>
35+
</v-btn>
3636
</div>
3737
<v-card-title class="justify-center font-weight-black text-uppercase" v-text="title"></v-card-title>
38-
<v-card-text class="subtitle-1 text-secondary">
38+
<v-card-text class="subtitle-1 text-medium-emphasis text-onSurface">
3939
<v-markdown :source="text" />
4040
</v-card-text>
4141
</v-card>

src/modules/home/components/home.slideshow.component.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
}"
9999
v-text="title"
100100
></v-card-title>
101-
<v-card-text v-if="text" class="subtitle-1 text-secondary">
101+
<v-card-text v-if="text" class="subtitle-1 text-medium-emphasis text-onSurface">
102102
<v-markdown :source="text" />
103103
</v-card-text>
104104
</v-card>

0 commit comments

Comments
 (0)