fix(ui): fix position of the theme spinner

This commit is contained in:
Łukasz Mierzwa
2019-11-30 12:36:46 +00:00
parent 5076df5420
commit cf78ce39ba

View File

@@ -17,7 +17,11 @@ const Placeholder = () => {
top: 0,
left: 0,
width: "100vw",
height: "100vh"
height: "100vh",
display: "flex",
alignItems: "center",
justifyContent: "center",
flexDirection: "column"
}}
>
<FontAwesomeIcon
@@ -26,12 +30,7 @@ const Placeholder = () => {
spin
style={{
color: "#5e7a88",
fontSize: "8rem",
position: "fixed",
top: "50%",
left: "50%",
marginRight: "-50%",
transform: "translate(-50%, -50%)"
fontSize: "8rem"
}}
/>
</div>,