feat(card): add tagIcon and tagBorder options (#791)

This commit is contained in:
Ludovic Fernandez
2025-08-25 17:49:06 +02:00
committed by GitHub
parent c149af0f74
commit 22f81e2470
5 changed files with 32 additions and 18 deletions

File diff suppressed because one or more lines are too long

View File

@@ -10,11 +10,11 @@
user-select: none;
}
.hextra-card:hover svg {
.hextra-card:hover .hextra-card-icon svg {
color: currentColor;
}
.hextra-card svg {
.hextra-card .hextra-card-icon svg {
width: 1.5rem;
color: #00000033;
transition: color 0.3s ease;
@@ -25,11 +25,11 @@
position: relative;
}
.dark .hextra-card svg {
.dark .hextra-card .hextra-card-icon svg {
color: #ffffff66;
}
.dark .hextra-card:hover svg {
.dark .hextra-card:hover .hextra-card-icon svg {
color: currentColor;
}