Files
ColdBreeze-chat-web/src/routes/callback/styled.tsx
T
2022-09-22 11:41:28 +08:00

14 lines
255 B
TypeScript

import styled from "styled-components";
const StyledWrapper = styled.div`
display: flex;
width: 100vw;
height: 100vh;
justify-content: center;
align-items: center;
word-break: break-word;
line-height: 1.5;
`;
export default StyledWrapper;