gitfoss-fork | 653abd1fae4fd7bf2b20d19f7b7564e5a26996db | app/components/PageWrapper.tsx ∙ GitFOSS
.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;
`;