mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
9 lines
167 B
JavaScript
9 lines
167 B
JavaScript
// @flow
|
|
import styled from 'styled-components';
|
|
|
|
export const Grid = styled.div`
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
margin-top: 48px;
|
|
width: 100%;
|
|
`;
|