Skip to content

Commit a01ca2c

Browse files
committed
fix(react): set minimum width for card component in SignIn and SignUp styles
1 parent ec31b54 commit a01ca2c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/react/src/components/presentation/SignIn/BaseSignIn.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ const useStyles = () => {
295295
() => ({
296296
card: {
297297
gap: `calc(${theme.vars.spacing.unit} * 2)`,
298+
minWidth: '420px',
298299
} as CSSProperties,
299300
header: {
300301
gap: 0,

packages/react/src/components/presentation/SignUp/BaseSignUp.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ const useStyles = () => {
132132
() => ({
133133
card: {
134134
gap: `calc(${theme.vars.spacing.unit} * 2)`,
135+
minWidth: '420px',
135136
} as CSSProperties,
136137
header: {
137138
gap: 0,

0 commit comments

Comments
 (0)