Skip to content

Commit 30ec240

Browse files
authored
fix(GenericItemCard): overlay background alpha (#2537)
1 parent ea266d8 commit 30ec240

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/components/Item/Card/GenericItemCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ const hasClick = computed(() => !!attrs.onClick);
162162
163163
@media (hover: hover) and (pointer: fine) {
164164
.card-box:hover .card-overlay-hover {
165-
background: rgba(var(--j-color-background), 0.5);
165+
background: rgb(var(--j-color-background), 0.5);
166166
}
167167
.card-box:hover .card-overlay-hover .card-overlay-hover-hidden {
168168
opacity: 1;

frontend/src/components/lib/JApp.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<template v-if="isLoading">
1111
cursor: wait;
1212
</template>
13-
--j-color-background: rgb(var(--v-theme-background));
13+
--j-color-background: var(--v-theme-background);
1414
--j-font-family: '{{ typography }}';
1515
}
1616
</component>

0 commit comments

Comments
 (0)