Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit

Permalink
feat: add footer (#73)
Browse files Browse the repository at this point in the history
* feat: add rights reserved

* Update src/components/background/index.js

Co-Authored-By: ImmanuelSegol <3ditds@gmail.com>
  • Loading branch information
ImmanuelSegol authored and michael1011 committed Jan 30, 2019
1 parent cfd22c1 commit 7314cea
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/components/background/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,29 @@ import PropTypes from 'prop-types';
import View from '../view';
import injectSheet from 'react-jss';

const styles = () => ({
const styles = theme => ({
wrapper: {
backgroundImage: 'linear-gradient(to bottom, #114357, #f29492)',
flexDirection: 'column',
},
boltz: {
color: theme.colors.white,
fontSize: '15px',
fontWeight: 'normal',
fontStyle: 'normal',
fontStretch: 'normal',
lineHeight: 'normal',
letterSpacing: 'normal',
alignSelf: 'center',
paddingBottom: '24px',
zIndex: 99999,
},
});

const BackGround = ({ classes, children }) => (
<View className={classes.wrapper} style={{ height: '100vh', width: '100vw' }}>
{children}
<span className={classes.boltz}>@ 2019 Boltz</span>
</View>
);

Expand Down

0 comments on commit 7314cea

Please sign in to comment.