feat: get upload component up to spec

This commit is contained in:
José Oliveira 2021-10-20 22:50:38 +01:00
parent bedb75b767
commit 10b8838cf0
7 changed files with 130 additions and 34 deletions

View file

@ -1,3 +1,5 @@
import { offColor } from 'src/styling/variables'
export default {
header: {
display: 'flex',
@ -16,5 +18,24 @@ export default {
},
viewIcons: {
marginRight: 12
},
wrapper: {
display: 'flex'
},
separator: {
display: 'flex',
flexBasis: '35%',
justifyContent: 'center',
color: offColor,
margin: [[8, 0, 8, 0]],
'&::before, &::after': {
content: '',
flexGrow: 1,
background: offColor,
height: 1,
fontSize: 1,
lineHeight: 0,
margin: [[0, 8, 0, 8]]
}
}
}