mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #994 from omnivore-app/fix/landing-image
Fix image-set syntax for the login page
This commit is contained in:
commit
07a03b4d48
1 changed files with 5 additions and 1 deletions
|
|
@ -89,7 +89,11 @@ function OmnivoreIllustration({ isLargeLayout }: OmnivoreIllustrationProps) {
|
|||
backgroundSize: 'cover',
|
||||
backgroundRepeat: 'no-repeat',
|
||||
backgroundPositionY: '70px',
|
||||
backgroundImage: `image-set(
|
||||
backgroundImage: `-webkit-image-set(
|
||||
url('/static/images/landing-illustration.png') 1x,
|
||||
url('/static/images/landing-illustration@2x.png') 2x
|
||||
)`,
|
||||
'background-image': `image-set(
|
||||
url('/static/images/landing-illustration.png') 1x,
|
||||
url('/static/images/landing-illustration@2x.png') 2x
|
||||
)`
|
||||
|
|
|
|||
Loading…
Reference in a new issue