hugo-theme-stack-stars/assets/scss/partials/pagination.scss
Jimmy Cai 2ab49f97ee
feat: add default/list
fix warning: found no layout file for "HTML" for kind "section": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
2020-09-06 14:18:38 +02:00

22 lines
544 B
SCSS

.pagination {
display: flex;
background-color: var(--card-background);
@include box_shadow(1);
border-radius: var(--card-border-radius);
overflow: hidden;
flex-wrap: wrap;
margin: var(--section-separation) 0;
.page-link {
padding: 16px 32px;
display: inline-flex;
&.current {
font-weight: bold;
background-color: var(--card-background-selected);
color: var(--card-text-color-main);
}
color: var(--card-text-color-secondary);
}
}