fix: Update Next Question button to use primary color for dark mode visibility
All checks were successful
Automated Container Build / build-and-push (push) Successful in 52s

This commit is contained in:
Elijah 2026-06-27 21:08:11 -07:00
parent 347c93713b
commit 7c13159855

View file

@ -426,7 +426,7 @@ export function QuizViewer({ quiz, retakeIds, isShared = false, onFinished }: Qu
) : currentIndex + 1 < order.length ? (
<button
onClick={handleNext}
className="px-6 py-2.5 rounded-lg bg-text-heading text-white font-medium hover:bg-text-body transition-all duration-200 cursor-pointer"
className="px-6 py-2.5 rounded-lg bg-primary text-white font-medium hover:bg-primary-hover transition-all duration-200 cursor-pointer"
>
Next Question
</button>