blob: 95a9b658ce5a9b08ad9bfdd00e0aa814dda7a06f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
@import '../global/globalCssVariables.module.scss';
.collectionCardView-outer {
height: 100%;
position: relative;
background-color: white;
overflow: hidden;
}
.card-wrapper {
display: flex;
position: absolute;
top: $CAROUSEL3D_TOP * 1%;
height: ($CAROUSEL3D_SIDE_SCALE * 100) * 1%;
align-items: center;
transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.card-item-active, .card-item{
transition: transform 0.3s ease-in-out;
}
.card-item-active{
position: absolute;
z-index: 100;
}
|