This commit is contained in:
Vesa Luusua 2017-10-18 15:17:55 +03:00
parent 09d4fbfe27
commit 34249b06a9
4 changed files with 9 additions and 9 deletions

View file

@ -7,7 +7,12 @@
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { LayoutWrapperTopbar, LayoutWrapperSideNav, LayoutWrapperMain, LayoutWrapperFooter } from '../../components';
import {
LayoutWrapperTopbar,
LayoutWrapperSideNav,
LayoutWrapperMain,
LayoutWrapperFooter,
} from '../../components';
import css from './LayoutSideNavigation.css';

View file

@ -13,6 +13,5 @@
/* Expand to the full remaining width of the viewport */
display: flex;
flex-direction: column;
width: 100%
width: 100%;
}

View file

@ -2,5 +2,5 @@
/* Expand to the full remaining width of the viewport */
display: flex;
flex-direction: column;
width: 100%
width: 100%;
}

View file

@ -6,11 +6,7 @@ import { Page } from '../../components';
const StaticPageComponent = props => {
const { children, ...pageProps } = props;
return (
<Page {...pageProps}>
{children}
</Page>
);
return <Page {...pageProps}>{children}</Page>;
};
StaticPageComponent.defaultProps = {