It seems that with position:absolute in use an element cannot be centred using justifyContent or alignItems. There\'s a workaround to use
position:absolute
justifyContent
alignItems
It's very simple really. Use percentage for width and left properties. For example:
width
left
logo : { position: 'absolute', top : 50, left: '30%', zIndex: 1, width: '40%', height: 150, }
Whatever width is, left equals (100% - width)/2
(100% - width)/2