Skip to content

Commit

Permalink
Fixed auth
Browse files Browse the repository at this point in the history
  • Loading branch information
simmmpleweb committed Mar 22, 2023
1 parent 624ef05 commit 73b0759
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## [1.0.1] 2022-03-22
### Bug Fixing
Auth layout fixed
## [1.0.0] 2022-10-17

### Original Release
Expand Down
6 changes: 3 additions & 3 deletions src/layouts/auth/Default.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ function AuthIllustration(props: { children: ReactNode; illustrationBackground:
const { children, illustrationBackground } = props;
// Chakra color mode
return (
<Flex minW='100vh' bg={authBg} position='relative' h='max-content'>
<Flex minW='100vh' w="100%" bg={authBg} position='relative' h='max-content'>
<Flex
h={{
sm: 'initial',
md: 'unset',
lg: '100vh',
xl: '100vh'
}}
w='100%'
w={{base:"100vw",md:'100%'}}
maxW={{ md: '66%', lg: '1313px' }}
mx='auto'
mx={{md:'auto'}}
pt={{ sm: '50px', md: '0px' }}
px={{ lg: '30px', xl: '0px' }}
ps={{ xl: '70px' }}
Expand Down

0 comments on commit 73b0759

Please sign in to comment.