portfolio/components/container.tsx

14 lines
355 B
TypeScript
Raw Normal View History

2022-06-15 12:07:13 +00:00
import styled from "styled-components"
export default styled.div`
background-color: ${({ theme }) => theme.colors.background};
color: ${({ theme }) => theme.colors.primary};
height: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
box-sizing: border-box;
justify-content: center;
align-items: center;
2022-06-15 12:07:13 +00:00
`