mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-09 21:45:53 -05:00
* Metamaps base prototype Fixed project scaffolding * Resolved all lint related issues Resolved all issues related to lint compliance
20 lines
458 B
TypeScript
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;
|
|
`; |