forked from Transparency/kgroad-frontend2
49 lines
794 B
SCSS
49 lines
794 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,
|
|
&__prev-disabled {
|
|
border-radius: 8px 0px 0px 8px;
|
|
}
|
|
|
|
&__next,
|
|
&__next-disabled {
|
|
border-radius: 0px 8px 8px 0px;
|
|
}
|
|
|
|
&__next-disabled,
|
|
&__prev-disabled {
|
|
cursor: auto;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
&__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);
|
|
}
|
|
}
|