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 1784933 commit 2338f42Copy full SHA for 2338f42
examples/components/Intro/Intro.js
@@ -20,7 +20,7 @@ const Intro = () => (
20
offsetYMax={50}
21
className={style.circle}
22
>
23
- <div />
+ <div className={style.circleInner}/>
24
</Parallax>
25
<Svg
26
className={style.hemispheres}
examples/components/Intro/Intro.scss
@@ -30,16 +30,16 @@
30
width: 70%;
31
height: 70%;
32
z-index: 1;
33
-
34
- div {
35
- position: absolute;
36
- top: 0;
37
- left: 0;
38
- width: 100%;
39
- height: 100%;
40
- border: 3px solid $plum;
41
- border-radius: 50%;
42
- }
+}
+
+:local(.circleInner) {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ border: 3px solid $plum;
+ border-radius: 50%;
43
}
44
45
:local(.hemispheres) {
0 commit comments