aboutsummaryrefslogtreecommitdiff
path: root/src/components/ToolCard.vue
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-12-16 21:57:23 +0100
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-12-16 21:57:23 +0100
commitacf8bc11dbab85ab361edbe400ebbe5e52a11b89 (patch)
tree8d62a2f316cace5677ccfc9c55477b80b0f8ef12 /src/components/ToolCard.vue
parent71e98e93e5752cba934f67d679088524c4d3d2ad (diff)
downloadit-tools-acf8bc11dbab85ab361edbe400ebbe5e52a11b89.tar.gz
it-tools-acf8bc11dbab85ab361edbe400ebbe5e52a11b89.tar.zst
it-tools-acf8bc11dbab85ab361edbe400ebbe5e52a11b89.zip
fix(tool-card): correct text color on light mode for card description
Diffstat (limited to 'src/components/ToolCard.vue')
-rw-r--r--src/components/ToolCard.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ToolCard.vue b/src/components/ToolCard.vue
index 7a05db9..926c5e9 100644
--- a/src/components/ToolCard.vue
+++ b/src/components/ToolCard.vue
@@ -50,7 +50,7 @@ a {
.icon {
opacity: 0.6;
- color: #ffffff;
+ color: v-bind('theme.textColorBase');
}
.title {
@@ -59,7 +59,7 @@ a {
.description {
opacity: 0.6;
- color: #ffffff;
+ color: v-bind('theme.textColorBase');
margin: 5px 0;
}
}