blob: 4a7f6dd92ed426d30c13fdfe0abf91a099ed6dbd (
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
35
36
37
|
.carousel-container {
height: 100%;
width: 100%;
@media(max-width: 768px) {
display: flex;
justify-content: center;
}
}
.carousel {
overflow: hidden;
height: 100%;
width: 100%;
@media(max-width: 768px) {
width: 84%;
display: flex;
align-items: center;
}
}
.carousel-slide {
display: none;
}
.carousel-slide.active-slide {
display: flex;
}
.carousel img {
width: 100%;
max-height: 100vh;
object-fit: cover;
@media(max-width: 768px) {
object-fit: contain;
border-radius: 16px;
}
}
|