@@ -20,13 +20,19 @@ var react_redux_1 = require('react-redux');
20
20
var store_1 = require ( '../../store/store' ) ;
21
21
var Action = require ( '../../actions/actions' ) ;
22
22
var path = require ( 'path' ) ;
23
+ var welcomeStyle = {
24
+ backgroundImage :"url(\"" + path . resolve ( __dirname , '../../../' , 'styles' , 'coderoad.jpg' ) + "\")" ,
25
+ backgroundRepeat :'no-repeat' ,
26
+ height :'350px' ,
27
+ marginTop :'0'
28
+ } ;
23
29
var Welcome = ( function ( _super ) {
24
30
__extends ( Welcome , _super ) ;
25
31
function Welcome ( ) {
26
32
_super . apply ( this , arguments ) ;
27
33
}
28
34
Welcome . prototype . render = function ( ) {
29
- return React . createElement ( "div" , { class : 'cr-welcome' } , React . createElement ( "img " , { src : path . resolve ( __dirname , '../../../' , 'styles' , 'coderoad.jpg' ) } ) , React . createElement ( flat_button_1 . default , { label :'Start' , onTouchTap :this . props . routeToTutorials } ) ) ;
35
+ return React . createElement ( "div" , { style : welcomeStyle } , React . createElement ( "div " , { class : 'cr-welcome' } , React . createElement ( flat_button_1 . default , { label :'Start' , onTouchTap :this . props . routeToTutorials , style : { marginTop : '200px' } } ) ) ) ;
30
36
} ;
31
37
Welcome = __decorate ( [
32
38
react_redux_1 . connect ( null , function ( dispatch ) {