77 lines
1.2 KiB
SCSS
77 lines
1.2 KiB
SCSS
.sliderLayoutContainer--carousel {
|
|
width: 90%;
|
|
margin: 0 auto;
|
|
|
|
@media screen and (min-width: 1920px) {
|
|
width: 69.375%;
|
|
}
|
|
@media screen and ((min-width: 769px) and (max-width: 1024px)) {
|
|
width: 92.1875%;
|
|
}
|
|
@media screen and (max-width: 768px) {
|
|
width: 79%;
|
|
}
|
|
}
|
|
|
|
.paginationDot {
|
|
height: 10px;
|
|
width: 10px;
|
|
background-color: #000000;
|
|
padding: 0;
|
|
margin: 0 6px;
|
|
}
|
|
|
|
.paginationDot--isActive {
|
|
height: 17px !important;
|
|
width: 17px !important;
|
|
border: 0.5px solid #000000;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.paginationDotsContainer {
|
|
align-items: center;
|
|
bottom: -17px;
|
|
}
|
|
|
|
.sliderRightArrow--carousel,
|
|
.sliderLeftArrow--carousel {
|
|
padding: 0;
|
|
}
|
|
|
|
.sliderRightArrow--carousel {
|
|
right: -32px;
|
|
|
|
@media screen and ((min-width: 769px) and (max-width: 1024px)) {
|
|
right: -24px;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
right: -16px;
|
|
}
|
|
}
|
|
|
|
.sliderLeftArrow--carousel {
|
|
left: -32px;
|
|
|
|
@media screen and ((min-width: 769px) and (max-width: 1024px)) {
|
|
left: -24px;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
left: -16px;
|
|
}
|
|
}
|
|
|
|
.sliderTrack--carousel {
|
|
gap: 16px;
|
|
|
|
@media screen and ((min-width: 769px) and (max-width: 1024px)) {
|
|
gap: 12px;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
gap: 8px;
|
|
}
|
|
}
|
|
|