Skip to content

Commit aed28bc

Browse files
committed
fix: invert Next logo in dark mode
Since the Next logo is a black circle, it blends into the background in dark mode.
1 parent 4ef4d81 commit aed28bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

report-app/src/app/shared/provider-label.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ const exactMatches: Record<string, string> = {
3030
height: 24px;
3131
}
3232
33-
:host-context(.dark-mode) :host(.genkit) .logo {
33+
:host-context(.dark-mode) :host(.genkit) .logo,
34+
:host-context(.dark-mode) :host(.next) .logo {
3435
filter: invert(1);
3536
}
3637
`,

0 commit comments

Comments
 (0)