blob: 2e0e293b83aa0656590e1e102bef5898edaca9cc (
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
|
.collectionCarouselView-outer {
background: gray;
}
.carouselView-back {
position: absolute;
display: flex;
left: 0;
top: 50%;
width: 30;
height: 30;
background: lightgray;
align-items: center;
border-radius: 5px;
justify-content: center;
}
.carouselView-fwd {
position: absolute;
display: flex;
right: 0;
top: 50%;
width: 30;
height: 30;
background: lightgray;
align-items: center;
border-radius: 5px;
justify-content: center;
}
|