added pagination controls
All checks were successful
Build and Push Image / build-and-push (push) Successful in 4m33s

This commit is contained in:
2025-12-28 14:29:46 -05:00
parent 21163b277d
commit 41aa78b672
13 changed files with 107 additions and 28 deletions

View File

@@ -195,3 +195,24 @@ form {
}
}
}
.pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 5;
padding: 2px;
a {
transition: all 0.25s ease-out;
cursor: pointer;
user-select: none;
padding: 5px 10px;
background-color: $featureColor;
border-radius: 4px;
&:hover {
background-color: $focusColor;
}
}
}