diff --git a/src/components/CardBoxGameStat.vue b/src/components/CardBoxGameStat.vue index 2d12aed..d13181e 100644 --- a/src/components/CardBoxGameStat.vue +++ b/src/components/CardBoxGameStat.vue @@ -33,6 +33,10 @@ const props = defineProps({ type: Boolean, default: false, }, + disableHover: { + type: Boolean, + default: false, + }, }); const tag = computed(() => { @@ -72,11 +76,16 @@ const cardStyle = ` background-size: cover; background-repeat: no-repeat; `; + +const hoverClass = props.disableHover + ? null + : "hover:cursor-pointer hover:outline outline-blue-500/50";