|
@@ -30,8 +30,11 @@ const styles = {
|
|
|
animation: 'App-logo-spin infinite 20s linear'
|
|
|
},
|
|
|
logo: {
|
|
|
- height: 'auto',
|
|
|
- width: '100%'
|
|
|
+ backgroundImage:`url(${require('./invite.jpeg')})`,
|
|
|
+ backgroundRepeat: 'no-repeat',
|
|
|
+ backgroundSize: 'contain',
|
|
|
+ width: '20em',
|
|
|
+ height: '26em'
|
|
|
},
|
|
|
columnLeft: {
|
|
|
flex: 1,
|
|
@@ -57,7 +60,7 @@ class App extends Component {
|
|
|
<div className="App" style={styles.main}>
|
|
|
|
|
|
<header className="App-header" style={styles.meat}>
|
|
|
- <img src={require('./invite.jpeg')} alt="invite" style={styles.logo}/>
|
|
|
+ <div id='main-image' style={styles.logo}/>
|
|
|
<ChristmasForm />
|
|
|
</header>
|
|
|
|