14 lines
207 B
TypeScript
14 lines
207 B
TypeScript
import styled from "styled-components";
|
|
|
|
export const GeneralView = styled.main`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
`
|