Ensure proper color contrast of pagination links

This commit is contained in:
Maciej Pędzich 2023-09-08 12:15:58 +02:00
parent e82fca6e18
commit a7b9728f93

View File

@ -67,10 +67,12 @@ const currentPageNum = Number(page || '1');
} }
.nav a { .nav a {
color: var(--font-color);
font-size: 2rem; font-size: 2rem;
} }
.nav a.active { .nav a.active {
color: var(--color-primary);
font-weight: bold; font-weight: bold;
} }