build(navigation): integrate namespaces and fonts

This commit is contained in:
Sara Vieira 2018-03-22 15:34:49 +00:00 committed by Sérgio Ramos
parent 76c6d18695
commit 86e60e6c5f
25 changed files with 415 additions and 296 deletions

View File

@ -1,6 +1,6 @@
{
"name": "my-joy-images",
"version": "1.3.6",
"version": "1.4.0",
"private": true,
"license": "MPL-2.0",
"repository": "github:yldio/joyent-portal",

View File

@ -13,6 +13,6 @@
<body>
<div id="header"></div>
<div id="root"></div>
<script src="/nav-static/main.js"></script>
<script src="/navigation/static/main.js"></script>
</body>
</html>

View File

@ -1,6 +1,6 @@
{
"name": "my-joy-instances",
"version": "2.2.6",
"version": "2.3.0",
"private": true,
"license": "MPL-2.0",
"repository": "github:yldio/joyent-portal",

View File

@ -13,6 +13,6 @@
<body>
<div id="header"></div>
<div id="root"></div>
<script src="/nav-static/main.js"></script>
<script src="/navigation/static/main.js"></script>
</body>
</html>

View File

@ -1,33 +1,90 @@
const Inert = require('inert');
const Path = require('path');
const Url = require('url');
const Intercept = require('apr-intercept');
const Fs = require('mz/fs');
const ROOT = Path.join(__dirname, '../build');
const { NAMESPACE = 'navigation' } = process.env;
exports.register = async server => {
const manifest = require('../build/asset-manifest.json');
const buildRoot = Path.join(__dirname, '../build');
const buildStatic = Path.join(buildRoot, `${NAMESPACE}`);
const publicRoot = Path.join(__dirname, `../public/static`);
await server.register(Inert);
await server.register([
{
plugin: Inert
}
]);
server.route([
{
method: 'GET',
path: '/nav-static/{path*}',
path: `/${NAMESPACE}/service-worker.js`,
config: {
auth: false,
handler: (request, h) => {
const { params } = request;
const { path } = params;
const file = manifest[path];
if (!file) {
return h.continue;
handler: {
file: {
path: Path.join(__dirname, '../build/service-worker.js')
}
}
}
},
{
method: 'GET',
path: `/${NAMESPACE}/favicon.ico`,
config: {
auth: false,
handler: {
file: {
path: Path.join(__dirname, '../build/favicon.ico')
}
}
}
},
{
method: 'GET',
path: `/${NAMESPACE}/static/{rest*}`,
config: {
auth: false
},
handler: async (request, h) => {
const { params } = request;
const { rest } = params;
return h.file(Path.join(ROOT, file), {
confine: ROOT
const publicPathname = Path.join(publicRoot, rest);
const [err1] = await Intercept(
Fs.access(publicPathname, Fs.constants.R_OK)
);
console.log({ publicPathname });
if (!err1) {
return h.file(publicPathname, {
confine: publicRoot
});
}
const buildMapPathname = Path.join(buildRoot, manifest[rest]);
const [err2] = await Intercept(
Fs.access(buildMapPathname, Fs.constants.R_OK)
);
console.log({ buildMapPathname });
if (!err2) {
return h.file(buildMapPathname, {
confine: buildStatic
});
}
console.log({ buildPathname });
const buildPathname = Path.join(buildStatic, rest);
return h.file(buildPathname, {
confine: buildStatic
});
}
}
]);

View File

@ -1,15 +1,15 @@
{
"name": "my-joy-navigation",
"version": "2.2.0",
"version": "2.3.1",
"private": true,
"license": "MPL-2.0",
"main": "lib/index.js",
"scripts": {
"dev": "NODE_ENV=development PREACT=1 REACT_APP_GQL_PORT=4000 PORT=3000 joyent-react-scripts start",
"dev": "NAMESPACE=navigation NODE_ENV=development PREACT=1 REACT_APP_GQL_PORT=3068 PORT=3000 joyent-react-scripts start",
"build:test": "echo 0",
"build:lib": "echo 0",
"build:bundle": "NODE_ENV=production redrun build",
"prepublish": "NODE_ENV=production redrun build",
"build:bundle": "NAMESPACE=navigation NODE_ENV=production redrun build",
"prepublish": "NAMESPACE=navigation NODE_ENV=production redrun build",
"lint": "redrun lint:ci -- --fix",
"lint:ci": "NODE_ENV=test eslint . --ext .js --ext .md",
"test": "echo 0",
@ -22,6 +22,7 @@
"apollo-link": "^1.2.1",
"apollo-link-http": "^1.5.2",
"apollo-link-state": "^0.4.0",
"apr-intercept": "^3.0.3",
"emotion": "^8.0.12",
"emotion-theming": "^8.0.12",
"graphql-tag": "^2.8.0",
@ -29,9 +30,10 @@
"joyent-icons": "^5.1.0",
"joyent-ui-toolkit": "^6.0.0",
"lodash.chunk": "^4.2.0",
"lodash.groupby": "^4.6.0",
"lodash.keys": "^4.2.0",
"mz": "^2.7.0",
"outy": "^0.1.2",
"param-case": "^2.1.1",
"pascal-case": "^2.0.1",
"preact": "^8.2.7",
"preact-compat": "^3.18.0",

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<style>
@import url('https://fonts.googleapis.com/css?family=Libre+Franklin:400,500,600');
@import url('/instances/static/css/libra-franklin.css');
html, body {
margin: 0;

View File

@ -0,0 +1,31 @@
@font-face {
font-family: 'Libre Franklin';
font-style: normal;
font-weight: 400;
src: local('Libre Franklin'), local('LibreFranklin-Regular'),
url(../fonts/libre-franklin/libre-franklin-regular.ttf) format('truetype');
}
@font-face {
font-family: 'Libre Franklin';
font-style: normal;
font-weight: 500;
src: local('Libre Franklin Medium'), local('LibreFranklin-Medium'),
url(../fonts/libre-franklin/libre-franklin-medium.ttf) format('truetype');
}
@font-face {
font-family: 'Libre Franklin';
font-style: normal;
font-weight: 600;
src: local('Libre Franklin SemiBold'), local('LibreFranklin-SemiBold'),
url(../fonts/libre-franklin/libre-franklin-semibold.ttf) format('truetype');
}
@font-face {
font-family: 'Libre Franklin';
font-style: normal;
font-weight: 700;
src: local('Libre Franklin Bold'), local('LibreFranklin-Bold'),
url(../fonts/libre-franklin/libre-franklin-bold.ttf) format('truetype');
}

View File

@ -0,0 +1,93 @@
Copyright (c) 2015, Impallari Type (www.impallari.com)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.

View File

@ -2,35 +2,14 @@ import React from 'react';
import { ApolloProvider } from 'react-apollo';
import { ThemeProvider } from 'emotion-theming';
import theme from 'joyent-ui-toolkit/dist/es/theme';
import theme from '@state/theme';
import { client } from './state';
import Header from './header';
const fullTheme = {
...theme,
flexboxgrid: {
gridSize: 12, // rem
gutterWidth: 1.25, // rem
outerMargin: 1.875, // rem
mediaQuery: 'only screen',
container: {
sm: 46, // rem
md: 56, // rem
lg: 59 // rem
},
breakpoints: {
xs: 0, // em
sm: 48, // em
md: 64, // em
lg: 75 // em
}
}
};
export default () => (
<ApolloProvider client={client}>
<ThemeProvider theme={fullTheme}>
<ThemeProvider theme={theme}>
<Header />
</ThemeProvider>
</ApolloProvider>

View File

@ -0,0 +1,13 @@
import emotion from 'preact-emotion';
export default emotion('a')`
font-weight: 600;
line-height: 24px;
font-size: 15px;
text-decoration: none;
color: ${props => props.theme.text};
&:hover {
color: ${props => props.theme.primary}
}
`;

View File

@ -30,7 +30,7 @@ export const Item = emotion('div')`
${props =>
props.active &&
`
height: ${remcalc(27)};
margin-top: ${remcalc(3)};
border-bottom: ${remcalc(3)} solid #E38200;
background-color: rgba(0, 0, 0, 0.25);
`};

View File

@ -32,3 +32,5 @@ export {
} from './service';
export { default as Overlay } from './overlay';
export { default as Anchor } from './anchor';
export { default as Sup } from './sup';

View File

@ -31,5 +31,8 @@ export const Description = emotion('h6')`
export default emotion('a')`
display: block;
&:not(:last-child) {
margin-bottom: ${remcalc(22)};
}
`;

View File

@ -0,0 +1,14 @@
import emotion from 'preact-emotion';
import remcalc from 'remcalc';
export default emotion('sup')`
position: absolute;
margin-left: ${remcalc(6)};
font-weight: ${props => props.theme.font.weight.semibold};
line-height: normal;
font-size: ${remcalc(8)};
color: ${props => (props.new ? props.theme.orange : props.theme.primary)};
display: inline-flex;
align-items: center;
justify-content: center;
`;

View File

@ -3,21 +3,30 @@ import emotion from 'preact-emotion';
import { graphql, compose } from 'react-apollo';
import gql from 'graphql-tag';
import remcalc from 'remcalc';
import groupBy from 'lodash.groupby';
import { Grid, Row, Col } from 'preact-emotion-flexboxgrid';
import {
DatacenterPlace,
DatacenterRegion,
Datacenter,
Overlay
Overlay,
Anchor
} from '../components';
const fixContinentName = name =>
name
.toLowerCase()
.split('_')
.join(' ');
const Container = emotion('div')`
background-color: #ffffff;
`;
const TitleContainer = emotion('div')`
background-color: ${props => props.theme.background};
text-transform:capitalize;
`;
const RegionContainer = emotion('div')`
@ -27,19 +36,13 @@ const RegionContainer = emotion('div')`
const GetDatacenters = gql`
{
regions @client {
regions {
name
slug
}
places @client {
name
slug
region
}
datacenters @client {
name
slug
place
continent
datacenters {
name
url
}
}
}
`;
@ -47,13 +50,15 @@ const GetDatacenters = gql`
const Datacenters = ({ expanded, regions = [] }) =>
expanded ? (
<Overlay>
{regions.map(({ name, slug, places }) => (
<div key={slug}>
{Object.keys(regions).map(region => (
<div key={region}>
<TitleContainer>
<Grid>
<Row>
<Col>
<DatacenterRegion>{name}</DatacenterRegion>
<DatacenterRegion>
{fixContinentName(region)}
</DatacenterRegion>
</Col>
</Row>
</Grid>
@ -62,11 +67,13 @@ const Datacenters = ({ expanded, regions = [] }) =>
<Grid>
<RegionContainer>
<Row>
{places.map(({ name, slug, datacenters }) => (
<Col key={slug} xs={12} md={6} lg={3}>
{regions[region].map(({ name, datacenters }) => (
<Col key={name} xs={12} md={6} lg={3}>
<DatacenterPlace>{name}</DatacenterPlace>
{datacenters.map(({ name, slug }) => (
<Datacenter key={slug}>{name}</Datacenter>
{datacenters.map(({ name, url }) => (
<Datacenter key={name}>
<Anchor href={url}>{name}</Anchor>
</Datacenter>
))}
</Col>
))}
@ -84,28 +91,10 @@ export default compose(
options: () => ({
ssr: false
}),
props: ({ data }) => {
const {
regions = [],
places = [],
datacenters = [],
loading = false,
error = null
} = data;
const _regions = regions.map(({ slug, ...region }) => ({
...region,
places: places
.filter(({ region }) => region === slug)
.map(({ slug, ...place }) => ({
...place,
datacenters: datacenters.filter(({ place }) => place === slug),
slug
})),
slug
}));
return { regions: _regions, loading, error };
}
props: ({ data: { regions = [], loading = false, error = null } }) => ({
regions: groupBy(regions, 'continent'),
loading,
error
})
})
)(Datacenters);

View File

@ -2,7 +2,6 @@ import React from 'react';
import emotion from 'preact-emotion';
import { graphql, compose } from 'react-apollo';
import gql from 'graphql-tag';
import chunk from 'lodash.chunk';
import remcalc from 'remcalc';
import { Grid, Row, Col } from 'preact-emotion-flexboxgrid';
@ -12,7 +11,9 @@ import {
ServiceName,
ServiceDescription,
Service,
Overlay
Overlay,
Anchor,
Sup
} from '../components';
const Container = emotion('div')`
@ -20,75 +21,81 @@ const Container = emotion('div')`
background-color: #ffffff;
`;
const GetCategories = gql`
{
categories @client {
name
slug
}
}
const CategoryWrapper = emotion(Col)`
margin-bottom: ${remcalc(48)};
`;
const sliptTag = tag => tag.split('=').map(n => n.replace(/'/g, ''));
const isNew = tag => sliptTag(tag)[0] === 'is-new';
const formatTag = tag => {
if (sliptTag(tag)[0] === 'note') {
return sliptTag(tag)[1];
}
if (sliptTag(tag)[0] === 'is-new') {
return 'New!';
}
return tag;
};
const GetProducts = gql`
{
products {
categories {
name
description
category
url
services {
name
slug
url
tags
description
}
}
}
`;
const Services = ({ expanded = false, categories = [], products = [] }) =>
const Services = ({ expanded = false, categories = [], loading }) =>
expanded ? (
<Overlay>
<Container>
<Grid>
{chunk(
categories.map(({ slug, ...category }) => ({
...category,
services: products.filter(({ category }) => category === slug),
slug
})),
4
).map(chunk => (
<Row>
{chunk.map(({ name, services }) => (
<Col xs={12} sm={6} md={4} lg={3}>
<Row>
{!loading &&
categories.map(({ name, services }) => (
<CategoryWrapper xs={12} sm={6} md={4}>
<ServiceCategory>{name}</ServiceCategory>
{services.map(({ name, description }) => (
{services.map(({ name, description, url, tags }) => (
<Service>
<ServiceName>{name}</ServiceName>
<ServiceName>
<Anchor href={url}>{name}</Anchor>
{tags
? tags.map(tag => (
<Sup new={isNew(tag)}>{formatTag(tag)}</Sup>
))
: null}
</ServiceName>
<ServiceDescription>{description}</ServiceDescription>
</Service>
))}
</Col>
</CategoryWrapper>
))}
</Row>
))}
</Row>
</Grid>
</Container>
</Overlay>
) : null;
export default compose(
graphql(GetCategories, {
options: () => ({
ssr: false
}),
props: ({ data }) => {
const { categories = [] } = data;
return { categories };
}
}),
graphql(GetProducts, {
options: () => ({
ssr: false
}),
props: ({ data }) => {
const { products = [] } = data;
return { products };
}
props: ({ data: { categories = [], loading = false, error = null } }) => ({
categories,
loading,
error
})
})
)(Services);

View File

@ -5,7 +5,6 @@ import pascalCase from 'pascal-case';
import keys from 'lodash.keys';
import { DataCenterIcon, TritonIcon, ServicesIcon } from './components';
// import { ServicesIcon } from './components';
import * as Overlays from './containers';
import {
@ -34,32 +33,21 @@ const GetHeader = gql`
}
`;
const GetAccount = gql`
{
datacenter {
name
}
account {
login
}
}
`;
// <HeaderDividerItem />
// <HeaderItem
// onClick={() => toggleSectionOpen('services')}
// active={isOpen && activePanel === 'services'}
// >
// <HeaderItemContent>Products & Services</HeaderItemContent>
// <HeaderItemIcon>
// <ServicesIcon light />
// </HeaderItemIcon>
// </HeaderItem>
// <HeaderDividerItem />
// Needs to be revised
// const GetAccount = gql`
// {
// datacenter {
// name
// }
// account {
// login
// }
// }
// `;
const Navigation = ({
login,
datacenter,
datacenter = true,
toggleSectionOpen,
isOpen,
activePanel
@ -69,6 +57,17 @@ const Navigation = ({
<HeaderItem>
<TritonIcon light />
</HeaderItem>
<HeaderDividerItem />
<HeaderItem
onClick={() => toggleSectionOpen('services')}
active={isOpen && activePanel === 'services'}
>
<HeaderItemContent>Products & Services</HeaderItemContent>
<HeaderItemIcon>
<ServicesIcon light />
</HeaderItemIcon>
</HeaderItem>
<HeaderDividerItem />
<HeaderFlexibleSpaceItem />
<HeaderDividerItem />
{datacenter ? (
@ -79,7 +78,7 @@ const Navigation = ({
<HeaderItemContent>
<HeaderItemSubContent>Data Center:</HeaderItemSubContent>
<HeaderSpace />
<span>{datacenter}</span>
<span>us-east-1</span>
</HeaderItemContent>
<HeaderItemIcon>
<DataCenterIcon light />
@ -87,18 +86,17 @@ const Navigation = ({
</HeaderItem>
) : null}
{datacenter ? <HeaderDividerItem /> : null}
{login ? (
<HeaderItem>
<HeaderItemContent>
<HeaderItemSubContent>Account:</HeaderItemSubContent>
<HeaderSpace />
{login}
</HeaderItemContent>
<HeaderItemIcon>
<Avatar />
</HeaderItemIcon>
</HeaderItem>
) : null}
<HeaderItem>
<HeaderItemContent>
<HeaderItemSubContent>Account:</HeaderItemSubContent>
<HeaderSpace />
Raul Millais
</HeaderItemContent>
<HeaderItemIcon>
<Avatar />
</HeaderItemIcon>
</HeaderItem>
)
</HeaderRow>
{keys(Overlays).map(panelName =>
React.createElement(Overlays[panelName], {
@ -109,23 +107,23 @@ const Navigation = ({
);
export default compose(
graphql(GetAccount, {
options: () => ({
ssr: false
}),
props: ({ data }) => {
const {
account = {},
datacenter = {},
loading = false,
error = null
} = data;
const { login } = account;
const { name } = datacenter;
// graphql(GetAccount, {
// options: () => ({
// ssr: false
// }),
// props: ({ data }) => {
// const {
// account = {},
// datacenter = {},
// loading = false,
// error = null
// } = data;
// const { login } = account;
// const { name } = datacenter;
return { login, datacenter: name, loading, error };
}
}),
// return { login, datacenter: name, loading, error };
// }
// }),
graphql(GetHeader, {
options: () => ({
ssr: false

View File

@ -1,12 +1,3 @@
import paramCase from 'param-case';
const dataSlugFromObjects = (arr = []) =>
arr.map(({ name, ...obj }) => ({
...obj,
name,
slug: paramCase(name)
}));
export default {
resolvers: {
Mutation: {
@ -17,106 +8,6 @@ export default {
},
defaults: {
isOpen: false,
activePanel: '',
regions: dataSlugFromObjects([
{
name: 'Americas',
__typename: 'Region'
},
{
name: 'Europe',
__typename: 'Region'
},
{
name: 'Asia',
__typename: 'Region'
}
]),
places: dataSlugFromObjects([
{
name: 'Ashburn, Virginia, USA',
region: 'americas',
__typename: 'Place'
},
{
name: 'Las Vegas, Nevada, USA',
region: 'americas',
__typename: 'Place'
},
{
name: 'Emeryville, California, USA',
region: 'americas',
__typename: 'Place'
},
{
name: 'Amsterdam, Netherlands',
region: 'europe',
__typename: 'Place'
},
{
name: 'Singapore',
region: 'asia',
__typename: 'Place'
},
{
name: 'Seoul, South Korea',
region: 'asia',
__typename: 'Place'
}
]),
datacenters: dataSlugFromObjects([
{
name: 'us-east-1',
place: 'ashburn-virginia-usa',
__typename: 'Datacenter'
},
{
name: 'us-east-2',
place: 'ashburn-virginia-usa',
__typename: 'Datacenter'
},
{
name: 'us-east-3',
place: 'ashburn-virginia-usa',
__typename: 'Datacenter'
},
{
name: 'us-west-1',
place: 'emeryville-california-usa',
__typename: 'Datacenter'
},
{
name: 'us-sw-1',
place: 'las-vegas-nevada-usa',
__typename: 'Datacenter'
},
{
name: 'eu-ams-1',
place: 'amsterdam-netherlands',
__typename: 'Datacenter'
}
]),
categories: dataSlugFromObjects([
{
name: 'Compute',
__typename: 'Category'
},
{
name: 'Network',
__typename: 'Category'
},
{
name: 'Storage',
__typename: 'Category'
},
{
name: 'Access',
__typename: 'Category'
},
{
name: 'Help & Support',
__typename: 'Category'
}
])
activePanel: ''
}
};

View File

@ -0,0 +1,40 @@
import theme from 'joyent-ui-toolkit/dist/es/theme';
const font = theme.font.href({
namespace: 'navigation'
});
const monoFont = theme.monoFont.href({
namespace: 'navigation'
});
export default {
...theme,
font: {
...theme.font,
href: () => font
},
monoFont: {
...theme.monoFont,
href: () => monoFont
},
headerbg: '#1e313b',
overlay: 'rgba(0, 0, 0, 0.25)',
flexboxgrid: {
gridSize: 12, // rem
gutterWidth: 1.25, // rem
outerMargin: 1.875, // rem
mediaQuery: 'only screen',
container: {
sm: 46, // rem
md: 56, // rem
lg: 59 // rem
},
breakpoints: {
xs: 0, // em
sm: 48, // em
md: 64, // em
lg: 75 // em
}
}
};