39 lines
797 B
CSS
39 lines
797 B
CSS
.container {
|
|
display: grid;
|
|
gap: var(--Spacing-x3);
|
|
}
|
|
|
|
.pagination {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: var(--Spacing-x2);
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
border-radius: var(--Corner-radius-Rounded);
|
|
margin: auto;
|
|
gap: var(--Spacing-x5);
|
|
}
|
|
|
|
.paginationButton {
|
|
background-color: transparent;
|
|
border: none;
|
|
height: 32px;
|
|
width: 32px;
|
|
font-size: var(--typography-Body-Bold-fontSize);
|
|
font-weight: var(--typography-Body-Bold-fontWeight);
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.chevronLeft {
|
|
transform: rotate(180deg);
|
|
height: 100%;
|
|
}
|
|
|
|
.paginationButtonActive {
|
|
color: var(--WHITE);
|
|
background-color: var(--Base-Text-Accent);
|
|
border-radius: var(--Corner-radius-Rounded);
|
|
}
|