- Parser additions, pagination

This commit is contained in:
Ty Clifford
2026-07-04 20:29:34 -04:00
parent c4c10c256c
commit bb93bf58fe
6 changed files with 167 additions and 11 deletions
+25 -2
View File
@@ -440,7 +440,7 @@ h2 {
.pagination {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
gap: 0.45rem;
align-items: center;
justify-content: center;
margin: 1.5rem 0;
@@ -448,7 +448,7 @@ h2 {
}
.pager {
min-width: 112px;
min-width: 44px;
border: 1px solid var(--line);
border-radius: var(--radius);
padding: 0.6rem 0.9rem;
@@ -457,6 +457,29 @@ h2 {
background: var(--surface);
}
.pager:first-child,
.pager:nth-last-child(2) {
min-width: 104px;
}
.pager--current {
color: #06100b;
border-color: color-mix(in srgb, var(--accent) 70%, white);
background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.pager--disabled {
cursor: not-allowed;
opacity: 0.48;
}
.pagination__summary {
flex-basis: 100%;
margin-top: 0.25rem;
text-align: center;
font-size: 0.92rem;
}
.side-rail {
display: grid;
align-content: start;