14 lines
326 B
JavaScript
14 lines
326 B
JavaScript
// Shared shape for the auth screens so all four stay in one control vocabulary.
|
|
export const authInputSx = {
|
|
'--Input-radius': '12px',
|
|
'--Input-minHeight': '48px',
|
|
'--Input-focusedThickness': '2px',
|
|
fontSize: '1rem',
|
|
}
|
|
|
|
export const authButtonSx = {
|
|
'--Button-radius': '12px',
|
|
minHeight: 48,
|
|
fontWeight: 600,
|
|
}
|