20 lines
386 B
TypeScript
20 lines
386 B
TypeScript
|
import styled from "styled-components";
|
||
|
|
||
|
const StyledLoading = styled.div`
|
||
|
cursor: wait;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
|
||
|
&::before {
|
||
|
color: #fff;
|
||
|
content: "Carregando na velocidade da luz...";
|
||
|
display: flex;
|
||
|
font-size: 12px;
|
||
|
justify-content: center;
|
||
|
mix-blend-mode: difference;
|
||
|
padding-top: 18px;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default StyledLoading;
|