add shadow to card

This commit is contained in:
2024-05-03 00:35:07 +02:00
parent c13f9de65e
commit 8eb6cc3e77
+13 -1
View File
@@ -66,13 +66,25 @@ onBeforeUpdate(() => {
cursor: pointer
}
.card_image {
max-height: 250px;
transition: filter .125s cubic-bezier(0.075, 0.82, 0.165, 1);
transition: margin .125s cubic-bezier(0.075, 0.82, 0.165, 1);
transition: transform .125s cubic-bezier(0.075, 0.82, 0.165, 1);
margin-top: 15px;
margin-bottom: 0px
}
.card_image.outlined {
outline: 2px solid red;
outline-offset: -2px;
}
.card_image.locked {
filter: brightness(0.5);
/* filter: brightness(0.5); */
filter: drop-shadow(5px 15px 2px rgba(0, 0, 0, .60));
margin-top: 0px;
margin-bottom: 15px;
}
.card.wrapped {