14 lines
255 B
TypeScript
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;
|