Show a nicer error message when server is installing

This commit is contained in:
Dane Everitt 2020-04-17 11:07:32 -07:00
parent 1aa3e0fb63
commit e044e8db1c
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
12 changed files with 117 additions and 34 deletions

View file

@ -0,0 +1,13 @@
import styled from 'styled-components';
import { breakpoint } from 'styled-components-breakpoint';
const ContentContainer = styled.div`
max-width: 1200px;
${tw`mx-4`};
${breakpoint('xl')`
${tw`mx-auto`};
`};
`;
export default ContentContainer;