Skip to content

Commit fd4c405

Browse files
nickdariaceifa
authored andcommitted
Override field background and foreground
More complete fix to account for possible future issues with light mode
1 parent 169f2d0 commit fd4c405

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/styles.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,9 +322,10 @@ export const GlobalStyles = createGlobalStyle`
322322
}
323323
}
324324
325-
/* Override auth0 text entry foreground to avoid black text against a dark background */
325+
/* Override auth0 input to fix unreadable text */
326326
.auth0-lock-input {
327-
color: rgba(255, 255, 255, 1) !important;
327+
background-color: rgba(255, 255, 255, 1); !important
328+
color: rgba(0, 0, 0, 1) !important;
328329
}
329330
}
330331

0 commit comments

Comments
 (0)