/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. * * OpenCRVS is also distributed under the terms of the Civil Registration * & Healthcare Disclaimer located at http://opencrvs.org/license. * * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. */ import styled, { css } from 'styled-components' import { Content } from '../../Content' import React from 'react' export const Layout = styled.section` display: grid; width: 100%; gap: 24px; grid-template-columns: ${({ children }) => React.Children.count(children) === 1 ? '1fr' : '1fr auto'}; margin: 24px auto; @media (max-width: ${({ theme }) => theme.grid.breakpoints.xl}px) { grid-template-columns: 1fr; gap: 24px; } @media (max-width: ${({ theme }) => theme.grid.breakpoints.md}px) { max-width: 100%; gap: 0; margin: 0; } ${Content} { margin: 0 auto; width: 100%; } /* On multiple columns, remove margin in and apply margin to */ ${({ children }) => React.Children.count(children) >= 2 && css` max-width: min(1140px, 100% - 24px - 24px); ${Content} { max-width: 100%; } `} ` export const LayoutCentered = styled.div` display: grid; min-height: calc(100% - 104px); justify-content: center; align-content: center; margin: 24px auto; ` export const LayoutForm = styled.section` display: grid; gap: 16px; grid-template-columns: 1fr auto 1fr; margin: 24px auto; @media (max-width: ${({ theme }) => theme.grid.breakpoints.md}px) { grid-template-columns: 1fr; max-width: 100%; gap: 0; margin: 0; } ${Content} { margin: 0 auto; width: 568px; } `