gitfoss | 27cd01b02b2d3fb35e71c5f332c1a6d572508b3f | app/components/PageWrapper.tsx ∙ GitFOSS

k / gitfoss

Files

Forked Fromethicdevs / gitfoss
Fork0
~app/components/PageWrapper.tsx
.ts
TypeScript
(application/typescript)
import styled from "styled-components";

export const PageWrapper = styled.div`
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;

  max-width: 1176px;
  width: 100%;

  margin: 0 auto;
  padding: 24px 16px 64px 16px;
  gap: 24px;
`;