Skip to content

Commit

Permalink
fix(GenericItemCard): overlay background alpha (#2537)
Browse files Browse the repository at this point in the history
  • Loading branch information
ferferga authored Dec 18, 2024
1 parent ea266d8 commit 30ec240
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Item/Card/GenericItemCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const hasClick = computed(() => !!attrs.onClick);
@media (hover: hover) and (pointer: fine) {
.card-box:hover .card-overlay-hover {
background: rgba(var(--j-color-background), 0.5);
background: rgb(var(--j-color-background), 0.5);
}
.card-box:hover .card-overlay-hover .card-overlay-hover-hidden {
opacity: 1;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/lib/JApp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<template v-if="isLoading">
cursor: wait;
</template>
--j-color-background: rgb(var(--v-theme-background));
--j-color-background: var(--v-theme-background);
--j-font-family: '{{ typography }}';
}
</component>
Expand Down

0 comments on commit 30ec240

Please sign in to comment.