fix loading

This commit is contained in:
Aykut Saraç 2022-03-20 13:03:18 +03:00
parent 3641b03d8d
commit caa9c8b318

View File

@ -3,13 +3,15 @@ import styled from "styled-components";
const StyledLoading = styled.div` const StyledLoading = styled.div`
position: fixed; position: fixed;
display: flex; top: 0;
flex-direction: column; left: 0;
justify-content: center; display: grid;
align-items: center; place-content: center;
width: 100%; width: 100%;
height: 100vh; height: 100vh;
text-align: center; text-align: center;
background: ${({ theme }) => theme.BLACK_DARK};
z-index: 10;
`; `;
const StyledLogo = styled.h2` const StyledLogo = styled.h2`