18 lines
385 B
CSS
18 lines
385 B
CSS
/* Make the carousel container adapt to content */
|
|
::deep .auto-height-carousel {
|
|
min-height: 200px;
|
|
}
|
|
|
|
/* Only show the active item */
|
|
::deep .auto-height-carousel .mud-carousel-item {
|
|
visibility: hidden;
|
|
}
|
|
|
|
::deep .auto-height-carousel .mud-carousel-item.mud-carousel-item-active {
|
|
visibility: visible;
|
|
}
|
|
|
|
::deep .mud-carousel-transition {
|
|
justify-content: center;
|
|
}
|