We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d58f970 commit 811b248Copy full SHA for 811b248
examples/components/IntroCopy/IntroCopy.js
@@ -7,7 +7,7 @@ import { Parallax } from 'react-scroll-parallax';
7
// }
8
// const modulo = copy.length % 2;
9
10
-const copy = 'Parrallax'.split('');
+const copy = 'Parallax'.split('');
11
12
const IntroCopy = () => (
13
<div className={style.root}>
@@ -16,7 +16,7 @@ const IntroCopy = () => (
16
{copy.map((letter, i) => (
17
<Parallax
18
key={`copy-${i}`}
19
- offsetXMax={100 * (i - 4)}
+ offsetXMax={100 * (i - 3)}
20
className={style.letter}
21
>
22
{letter}
0 commit comments