diff --git a/src/components/background/index.js b/src/components/background/index.js index 315a7ee..11ece21 100644 --- a/src/components/background/index.js +++ b/src/components/background/index.js @@ -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 }) => ( {children} + @ 2019 Boltz );