File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,6 @@ main.-landing {
92
92
.by-authors .authors {
93
93
flex-direction: column;
94
94
align-items: flex-start;
95
- margin-left: 20px;
96
95
height: 27vw;
97
96
justify-content: space-around;
98
97
}
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ class Index extends Component {
63
63
const introPara = ReactDOM . findDOMNode ( this . introPara )
64
64
const logos = ReactDOM . findDOMNode ( this . logos )
65
65
const comingSoon = ReactDOM . findDOMNode ( this . comingSoon )
66
+ const links = ReactDOM . findDOMNode ( this . links )
66
67
67
68
const headerStart = ( window . screen . width > iPadMaxW
68
69
? {
@@ -101,6 +102,9 @@ class Index extends Component {
101
102
scale : 0.3 ,
102
103
opacity : 0 ,
103
104
} )
105
+ TweenLite . set ( links , {
106
+ opacity : 0 ,
107
+ } )
104
108
105
109
animation
106
110
. delay ( 0.6 ) // wait for browser to not be busy. todo requestIdleCallback
@@ -125,6 +129,10 @@ class Index extends Component {
125
129
scale : 1 ,
126
130
ease : Power2 . easeIn ,
127
131
} )
132
+ . to ( links , 5 , {
133
+ opacity : 1 ,
134
+ delay : 2 ,
135
+ } )
128
136
129
137
animation . play ( )
130
138
}
@@ -393,6 +401,27 @@ class Index extends Component {
393
401
</ h2 >
394
402
< SubscribeForm />
395
403
</ Paper >
404
+ < div
405
+ style = { {
406
+ textAlign : 'center' ,
407
+ marginTop : 20 ,
408
+ marginBottom : 15 ,
409
+ opacity : 0 ,
410
+ } }
411
+ ref = { ( links ) => { this . links = links } }
412
+ >
413
+ < a
414
+ href = "https://blog.graphql.guide/"
415
+ style = { { marginRight : 30 } }
416
+ >
417
+ Blog
418
+ </ a >
419
+ < a
420
+ href = "https://twitter.com/graphqlguide"
421
+ >
422
+ Twitter
423
+ </ a >
424
+ </ div >
396
425
</ section >
397
426
</ main >
398
427
</ Ripple >
You can’t perform that action at this time.
0 commit comments