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`
position: fixed;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
top: 0;
left: 0;
display: grid;
place-content: center;
width: 100%;
height: 100vh;
text-align: center;
background: ${({ theme }) => theme.BLACK_DARK};
z-index: 10;
`;
const StyledLogo = styled.h2`