fix: inlined svg background images
surround imported svg with double quotes, vite recommendation
This commit is contained in:
parent
3470bf78b7
commit
c22b1e4b5a
@ -109,11 +109,11 @@ export const LandingPage = () => {
|
|||||||
<div className={styles.background}>
|
<div className={styles.background}>
|
||||||
<div
|
<div
|
||||||
className={`${styles.backgroundBlob} ${styles.backgroundBlobLeft}`}
|
className={`${styles.backgroundBlob} ${styles.backgroundBlobLeft}`}
|
||||||
style={{ backgroundImage: `url(${bg_l})` }}
|
style={{ backgroundImage: `url("${bg_l}")` }}
|
||||||
></div>
|
></div>
|
||||||
<div
|
<div
|
||||||
className={`${styles.backgroundBlob} ${styles.backgroundBlobRight}`}
|
className={`${styles.backgroundBlob} ${styles.backgroundBlobRight}`}
|
||||||
style={{ backgroundImage: `url(${bg_r})` }}
|
style={{ backgroundImage: `url("${bg_r}")` }}
|
||||||
></div>
|
></div>
|
||||||
|
|
||||||
<Container className={styles.container}>
|
<Container className={styles.container}>
|
||||||
|
Loading…
Reference in New Issue
Block a user