HomeDisk/website/components/container.tsx
2022-05-09 23:04:46 +02:00

15 lines
359 B
TypeScript

import styled from 'styled-components'
const Container = styled.div`
height: 100%;
min-height: 100vh;
padding: 0 0.5rem;
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