Files
Open-Archival/OpenArchival.Blazor.FileViewer/FileViewerCarousel.razor.css
2026-05-17 20:54:09 -04:00

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;
}