UNPKG

@oxyhq/services

Version:

Reusable OxyHQ module to handle authentication, user management, karma system, device-based session management and more 🚀

43 lines • 1.14 kB
/** * Shared spacing constants for authentication screens * These values ensure consistent vertical spacing across all step components * All gaps between elements (illustration, title, description, textfield, buttons, etc.) use this value */ export declare const STEP_GAP = 12; export declare const STEP_INNER_GAP = 12; /** * Reusable stylesheet for step components * All step components should use these base styles for consistency */ export declare const stepStyles: { container: { width: "100%"; maxWidth: number; alignSelf: "center"; }; sectionSpacing: { marginBottom: number; }; header: { alignItems: "flex-start"; width: "100%"; gap: number; }; title: { textAlign: "left"; marginBottom: number; marginTop: number; }; subtitle: { textAlign: "left"; maxWidth: number; alignSelf: "flex-start"; marginBottom: number; marginTop: number; }; buttonContainer: { marginTop: number; marginBottom: number; }; }; //# sourceMappingURL=spacing.d.ts.map