fix(tool-card): correct text color on light mode for card description

This commit is contained in:
Corentin Thomasset 2022-12-16 21:57:23 +01:00
parent 71e98e93e5
commit acf8bc11db
No known key found for this signature in database
GPG Key ID: DBD997E935996158

View File

@ -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;
}
}