HomeDisk/website/components/container.tsx

16 lines
359 B
TypeScript
Raw Normal View History

2022-05-09 21:04:46 +00:00
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