You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
524 B
SCSS

.pagination {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 2rem;
font-size: 1em;
list-style: none;
padding: 0;
li {
margin-right: 1rem;
}
.page-link {
background: transparent;
border: none;
cursor: pointer;
padding: 0;
&.disabled {
opacity: 0.5;
pointer-events: none;
}
}
.page-numbers {
font-size: 0.9rem;
color: var(--meta-color);
}
}