forked from Transparency/kgroad-frontend2
41 lines
672 B
SCSS
41 lines
672 B
SCSS
.pagination {
|
|
margin-top: 40px;
|
|
display: flex;
|
|
|
|
button {
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid rgb(208, 213, 221);
|
|
background-color: rgb(255, 255, 255);
|
|
}
|
|
|
|
&__prev {
|
|
border-radius: 8px 0px 0px 8px;
|
|
}
|
|
|
|
&__next {
|
|
border-radius: 0px 8px 8px 0px;
|
|
}
|
|
|
|
&__page,
|
|
&__page_active {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 20px;
|
|
color: rgb(52, 64, 84);
|
|
}
|
|
|
|
&__page_active {
|
|
background-color: rgb(249, 250, 251) !important;
|
|
}
|
|
|
|
&__page:hover,
|
|
&__prev:hover,
|
|
&__next:hover {
|
|
background-color: rgb(249, 250, 251);
|
|
}
|
|
}
|