Skip to content

Commit

Permalink
style(Signatures): change page buttons to primary colour
Browse files Browse the repository at this point in the history
  • Loading branch information
flowergardn committed Dec 12, 2023
1 parent 9644bda commit d388571
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Signatures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ const Signatures = ({
page * signaturesPerPage + signaturesPerPage,
);

const backStyle = page !== 0 ? "bg-pink-300" : "invisible";
const backStyle = page !== 0 ? "bg-primary" : "invisible";
const nextStyle =
page < Math.ceil(signatures.length / signaturesPerPage) - 1
? "bg-pink-300"
? "bg-primary"
: "invisible";

if (displayedSignatures.length === 0) {
Expand Down

0 comments on commit d388571

Please sign in to comment.