summaryrefslogtreecommitdiff
path: root/client/src/components/Carousel.css
blob: e2fbc1c97299def0ad16a074e9cc246c2d7380ea (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
.carousel-container {
  height: 100%;
  width: 100%;
}

.carousel {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.carousel-slide {
  display: none;
}

.carousel-slide.active-slide {
  display: flex;
}

.carousel img {
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
}