Skip to content

Commit

Permalink
Merge branch 'feat/favorites-add-draggable' into gitmotion/main
Browse files Browse the repository at this point in the history
  • Loading branch information
gitmotion committed Oct 25, 2024
2 parents 67c26a8 + 3011ba6 commit 52f34e0
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/pages/Home.page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,22 @@ function onUpdateFavoriteTools() {
}
.ghost-favorites-draggable {
opacity: 0.5;
opacity: 0.4;
background-color: #ccc;
border: 2px dashed #666;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
transform: scale(1.1);
animation: ghost-favorites-draggable-animation 0.2s ease-out;
}
@keyframes ghost-favorites-draggable-animation {
0% {
opacity: 0;
transform: scale(0.9);
}
100% {
opacity: 0.4;
transform: scale(1.0);
}
}
</style>

0 comments on commit 52f34e0

Please sign in to comment.