patch-1
@reggi/path-to-regexp
dependabot/npm_and_yarn/main/copy-to-clipboard-4.0.2
dependabot/npm_and_yarn/main/eslint-10.4.0
dependabot/npm_and_yarn/main/npmcli/eslint-config-7.0.0
dependabot/npm_and_yarn/main/proc-log-7.0.0
dependabot/npm_and_yarn/npm_and_yarn-826852524d
dependabot/npm_and_yarn/npm_and_yarn-ab9a7f4bc2
deprecate-totp-2fa
dhei/classic-tokens
gat-bypass-2fa-docs
jpg619/fix-accessibility-content-flow
jpg619/version-bump-tar-2
kartykp/gat-bypass-2fa-docs
kartykp/upgrade-path-to-regex
main
maitxn/version-bump-tar
patch-1
reggi/cache-based-on-version
reggi/dev-engines
reggi/fix-transform-prettier
reggi/overrides
update-search-sensitivity
| 1 | import {TextInput as PrimerTextInput} from '@primer/react' |
| 2 | import styled from 'styled-components' |
| 3 | |
| 4 | const TextInput = styled(PrimerTextInput)` |
| 5 | /* The font-size of inputs should never be less than 16px. |
| 6 | * Otherwise, iOS browsers will zoom in when the input is focused. |
| 7 | * TODO: Update font-size of TextInput in @primer/react. |
| 8 | */ |
| 9 | input { |
| 10 | font-size: 16px !important; |
| 11 | color: var(--fgColor-default, #1f2328) !important; |
| 12 | caret-color: var(--fgColor-default, #1f2328) !important; |
| 13 | } |
| 14 | |
| 15 | input::placeholder { |
| 16 | color: var(--fgColor-muted, #57606a) !important; |
| 17 | opacity: 1; |
| 18 | } |
| 19 | ` |
| 20 | export default TextInput |