2ab49f97ee
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.
23 lines
544 B
SCSS
23 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);
|
|
}
|
|
}
|