chordia-ui 3.3.3 → 3.3.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chordia-ui",
3
- "version": "3.3.3",
3
+ "version": "3.3.4",
4
4
  "description": "Chordia Design System - UI components, tokens, and Tailwind preset",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",
@@ -484,7 +484,7 @@ export default function LoginPage({
484
484
  alignItems: 'center', padding: '32px 72px', position: 'relative', background: 'white',
485
485
  overflowY: 'auto', minHeight: 0,
486
486
  }}>
487
- <div style={{ display: 'flex', flexDirection: 'column', alignItems: 'flex-start', width: '100%', maxWidth: 360, gap: 28, flex: 1 }}>
487
+ <div style={{ display: 'flex', flexDirection: 'column', alignItems: 'flex-start', width: '100%', maxWidth: 360, gap: 28}}>
488
488
 
489
489
  {view === 'signup' ? (
490
490
  /* ── Sign Up ── */
@@ -650,7 +650,7 @@ export default function LoginPage({
650
650
  )}
651
651
  <Divider />
652
652
  <NavRow text="Not received yet?" linkText="Resend" onClick={() => onResendCode?.(verifyEmail)} />
653
- <TermsFooter onTerms={onTerms} onPrivacyPolicy={onPrivacyPolicy} paddingTop={40} />
653
+ <TermsFooter onTerms={onTerms} onPrivacyPolicy={onPrivacyPolicy} paddingTop={24} />
654
654
  </div>
655
655
  </>
656
656
 
@@ -808,7 +808,7 @@ export default function LoginPage({
808
808
  </div>
809
809
 
810
810
  <NavRow text="Not a member yet?" linkText="Sign Up" onClick={() => { setView('signup'); onSignUp?.(); }} />
811
- <TermsFooter onTerms={onTerms} onPrivacyPolicy={onPrivacyPolicy} paddingTop={0} />
811
+ <TermsFooter onTerms={onTerms} onPrivacyPolicy={onPrivacyPolicy} paddingTop={22} />
812
812
  </div>
813
813
  </div>
814
814
  )}