mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #635 from omnivore-app/fix/login-layout
Fix layout of responsive image on the login page
This commit is contained in:
commit
20ea93168f
1 changed files with 2 additions and 3 deletions
|
|
@ -59,8 +59,7 @@ function MediumLoginLayout(props: LoginFormProps) {
|
|||
distribution="start"
|
||||
css={{
|
||||
width: '100vw',
|
||||
height: '100%',
|
||||
minHeight: '100vh',
|
||||
height: '100vh',
|
||||
bg: '$omnivoreYellow',
|
||||
overflowY: 'clip'
|
||||
}}
|
||||
|
|
@ -84,7 +83,7 @@ type OmnivoreIllustrationProps = {
|
|||
function OmnivoreIllustration({ isLargeLayout }: OmnivoreIllustrationProps) {
|
||||
return (
|
||||
<img
|
||||
style={{ marginRight: '57px' }}
|
||||
style={{ marginRight: '57px', objectFit: 'fill' }}
|
||||
width='100%'
|
||||
srcSet="/static/images/landing-illustration.png 1x,
|
||||
/static/images/landing-illustration@2x.png 2x"
|
||||
|
|
|
|||
Loading…
Reference in a new issue