21 lines
327 B
SCSS
21 lines
327 B
SCSS
|
.sliderTrackContainer {
|
||
|
background-color: white;
|
||
|
width: 1300px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
.paginationDotsContainer {
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.paginationDot {
|
||
|
background-color: black;
|
||
|
}
|
||
|
|
||
|
.paginationDot--isActive {
|
||
|
width: 16px !important;
|
||
|
height: 16px !important;
|
||
|
border: 0.5px solid #000000;
|
||
|
background-color: white;
|
||
|
}
|