Files
TheGame/packages/metamaps/styles/Loading.tsx
The Lone Rōnin 9a9deaf727 Metamaps base prototype (#50)
* Metamaps base prototype

Fixed project scaffolding

* Resolved all lint related issues

Resolved all issues related to lint compliance
2020-08-06 15:04:47 -06:00

20 lines
458 B
TypeScript

import styled from 'styled-components';
import { BackgroundColor } from './Styles';
export const LoadingContainer = styled.div`
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1110;
background: ${BackgroundColor};
display: flex;
align-items: center;
justify-content: center;
transition: left, top, opacity 0.25s cubic-bezier(0.45, 0, 0.55, 1);
opacity: 0;
pointer-events: none;
`;