Skip to content

Commit 73b0759

Browse files
committed
Fixed auth
1 parent 624ef05 commit 73b0759

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
## [1.0.1] 2022-03-22
3+
### Bug Fixing
4+
Auth layout fixed
25
## [1.0.0] 2022-10-17
36

47
### Original Release

src/layouts/auth/Default.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ function AuthIllustration(props: { children: ReactNode; illustrationBackground:
1212
const { children, illustrationBackground } = props;
1313
// Chakra color mode
1414
return (
15-
<Flex minW='100vh' bg={authBg} position='relative' h='max-content'>
15+
<Flex minW='100vh' w="100%" bg={authBg} position='relative' h='max-content'>
1616
<Flex
1717
h={{
1818
sm: 'initial',
1919
md: 'unset',
2020
lg: '100vh',
2121
xl: '100vh'
2222
}}
23-
w='100%'
23+
w={{base:"100vw",md:'100%'}}
2424
maxW={{ md: '66%', lg: '1313px' }}
25-
mx='auto'
25+
mx={{md:'auto'}}
2626
pt={{ sm: '50px', md: '0px' }}
2727
px={{ lg: '30px', xl: '0px' }}
2828
ps={{ xl: '70px' }}

0 commit comments

Comments
 (0)