mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
20 lines
349 B
TypeScript
20 lines
349 B
TypeScript
import styled from "styled-components";
|
|
|
|
const StyledLoading = styled.div`
|
|
cursor: wait;
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
&::before {
|
|
color: #fff;
|
|
content: "Working on it...";
|
|
display: flex;
|
|
font-size: 12px;
|
|
justify-content: center;
|
|
mix-blend-mode: difference;
|
|
padding-top: 18px;
|
|
}
|
|
`;
|
|
|
|
export default StyledLoading;
|