hover css

This commit is contained in:
pa
2026-03-08 17:14:11 +09:00
parent 6d0cfdd8aa
commit 97c79bef78
7 changed files with 67 additions and 4 deletions
@@ -237,3 +237,14 @@
favoriteRequest.deleteFavorite({ objectId });
}
</script>
<style scoped>
.favorites-search-card img {
filter: saturate(0.8) contrast(0.8);
transition: filter 0.2s ease;
}
.favorites-search-card:hover img {
filter: saturate(1) contrast(1);
}
</style>