File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
src/shared/ui-kit/ImageGallery/components/ImageGalleryModal Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 122122.image-gallery-modal {
123123 .modal__content {
124124 padding : 0 ;
125+ padding-bottom : 2rem ;
125126 .modal__header-wrapper {
126127 .modal__header--default-padding {
127128 margin-right : 0.5rem ;
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ import RightArrowIcon from "@/shared/icons/rightArrow.icon";
88import { VideoEmbed } from "@/shared/ui-kit/VideoEmbed" ;
99import "./ImageGalleryModal.scss" ;
1010import "swiper/components/pagination/pagination.min.css" ;
11+ import 'swiper/swiper-bundle.min.css' ;
12+
1113
1214interface ImageGalleryProps {
1315 images : string [ ] ;
@@ -58,6 +60,9 @@ const ImageGalleryModal: FC<ImageGalleryProps> = (props) => {
5860 pagination
5961 initialSlide = { initialSlide }
6062 allowTouchMove = { isTabletView }
63+ direction = "horizontal"
64+ centeredSlides
65+ slidesPerView = { 1 }
6166 >
6267 { videoSrc && (
6368 < SwiperSlide key = { videoSrc } className = "slider-wrapper" >
You can’t perform that action at this time.
0 commit comments