Lamassu admin server initial commit

This commit is contained in:
Rafael Taranto 2019-03-12 10:49:09 -03:00 committed by Rafael Taranto
parent d083ae5a40
commit fc1951c4b2
158 changed files with 28462 additions and 1606 deletions

View file

@ -0,0 +1,49 @@
import { spacer, subheaderColor, placeholderColor } from '../styling/variables'
export default {
wrapper: {
display: 'flex',
flexDirection: 'row',
height: '100%'
},
main: {
display: 'flex',
flex: 1
},
firstSide: {
margin: `0 ${spacer * 8}px 0 ${spacer * 6}px`
},
secondSide: {
marginTop: -49
},
coinTotal: {
margin: `${spacer * 1.5}px 0`
},
noMargin: {
margin: 0
},
leftSpacer: {
marginLeft: spacer
},
topSpacer: {
marginTop: `${spacer * 5}px`
},
addressWrapper: {
display: 'flex',
flexDirection: 'column',
flex: 1,
backgroundColor: subheaderColor
},
address: {
width: 375,
margin: `${spacer * 1.5}px ${spacer * 3}px`
},
total: {
marginTop: 'auto',
textAlign: 'right',
marginRight: 20
},
totalTitle: {
color: placeholderColor
}
}