We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddbde5a commit 02b2557Copy full SHA for 02b2557
1 file changed
client/src/pages/404.tsx
@@ -98,11 +98,11 @@ export default function Custom404() {
98
}
99
100
if (option === currentTrivia.answer) {
101
- return `${baseClass} bg-accent border-accent text-accent-foreground font-semibold`;
+ return `${baseClass} bg-primary border-accent text-accent-foreground font-semibold`;
102
103
104
if (option === selectedAnswer && option !== currentTrivia.answer) {
105
- return `${baseClass} bg-secondary border-secondary text-secondary-foreground`;
+ return `${baseClass} bg-accent border-secondary text-secondary-foreground`;
106
107
108
return `${baseClass} bg-muted border-border text-muted-foreground`;
0 commit comments