14 lines
239 B
TypeScript
14 lines
239 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const Container = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
`;
|
|
|
|
export const LoginWrapper = styled.div`
|
|
width: 60%;
|
|
`;
|