HomeDisk/website/components/container.tsx

15 lines
338 B
TypeScript

import styled from 'styled-components'
const Container = styled.div`
height: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: ${({ theme }) => theme.colors.background};
color: ${({ theme }) => theme.colors.color};
`
export default Container