blob: ff9c0a569bb2e24c9204f449ac2289ccb4f66dae (
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
30
31
32
33
34
|
@import '../global/globalCssVariables.module.scss';
.collectionCardView-outer {
height: 100%;
position: relative;
background-color: white;
overflow: hidden;
}
.card-wrapper {
display: flex;
position: absolute;
align-items: center;
transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.card-row{
display: flex;
position: absolute;
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;
}
|