We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 285eb9e commit 59563edCopy full SHA for 59563ed
components/Cards/VehicleCard.module.scss
@@ -1,5 +1,21 @@
1
@import 'vars.scss';
2
3
+@keyframes slideTopFadeIn {
4
+ 0% {
5
+ transform: translateY(-100%);
6
+ opacity: 0;
7
+ }
8
+ 75% {
9
+ transform: translateY(20%);
10
11
+ 100% {
12
+ transform: translateY(0);
13
+ opacity: 1;
14
15
+}
16
+
17
18
19
.container {
20
width: calc(50vw - 16px);
21
height: 330px;
@@ -14,6 +30,8 @@
30
min-height: 340px;
31
height: auto;
32
margin-left: spacing(0.5);
33
+ animation-fill-mode: forwards;
34
+ animation: slideTopFadeIn 0.3s ease-in;
35
}
36
.likeButton {
37
position: absolute;
0 commit comments