@insforge/react 0.7.11 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/atoms.cjs +2 -0
- package/dist/atoms.cjs.map +1 -1
- package/dist/atoms.js +2 -0
- package/dist/atoms.js.map +1 -1
- package/dist/components.cjs +6 -12
- package/dist/components.cjs.map +1 -1
- package/dist/components.js +6 -12
- package/dist/components.js.map +1 -1
- package/dist/forms.cjs +2 -0
- package/dist/forms.cjs.map +1 -1
- package/dist/forms.js +2 -0
- package/dist/forms.js.map +1 -1
- package/dist/index.cjs +7 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -13
- package/dist/index.js.map +1 -1
- package/dist/styles.css +2 -0
- package/package.json +3 -3
package/dist/forms.js
CHANGED
|
@@ -2484,6 +2484,8 @@ var VerificationCodeInput = styled.input`
|
|
|
2484
2484
|
font-weight: ${theme.fontWeight.semibold};
|
|
2485
2485
|
border: 1px solid ${theme.colors.border};
|
|
2486
2486
|
border-radius: ${theme.radius.sm};
|
|
2487
|
+
background-color: ${theme.colors.bgWhite};
|
|
2488
|
+
color: ${theme.colors.text};
|
|
2487
2489
|
transition: border-color ${theme.transition.base};
|
|
2488
2490
|
font-family: ${theme.fontFamily.manrope};
|
|
2489
2491
|
|