Fix: Prevented the inside border from lighting up while overing cards with footer

This commit is contained in:
lscambo13
2025-05-31 08:01:22 -07:00
parent de17544fb4
commit 5e01be31b4

View File

@@ -237,7 +237,7 @@ html {
.visualCardBox .cardScalable {
border-width: 0 0 var(--borderWidth) 0 !important;
border-radius: 0 !important;
border-color: var(--borderColor) !important;
border-color: var(--darkerBorderColor) !important;
}
.cardImageContainer {
@@ -265,6 +265,10 @@ html {
border-color: white !important;
}
.card.card-hoverable:hover .visualCardBox .cardScalable {
border-color: var(--darkerBorderColor) !important;
}
.card.card-hoverable:hover .cardImageContainer {
transform: scale(1.025);
filter: brightness(1.025);