Skip to content

Commit 169f2d0

Browse files
nickdariaceifa
authored andcommitted
Fix unreadable text in auth0 flow
Auth0 fields were showing black text against a dark text entry field. Override text color to white.
1 parent ff14325 commit 169f2d0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/styles.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,11 @@ export const GlobalStyles = createGlobalStyle`
321321
font-size: ${fontSizes.textSize} !important;
322322
}
323323
}
324+
325+
/* Override auth0 text entry foreground to avoid black text against a dark background */
326+
.auth0-lock-input {
327+
color: rgba(255, 255, 255, 1) !important;
328+
}
324329
}
325330
326331
/* Override some Monaco CSS internals */

0 commit comments

Comments
 (0)