Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
feat(component): add spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexpeschel committed Dec 20, 2017
1 parent 8e383e0 commit 5c52909
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/component/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import PropertyPane from '../lsg/patterns/panes/property-pane';
import { PropertyList } from './container/property_list';
import * as React from 'react';
import * as ReactDom from 'react-dom';
import Space, { Size } from '../lsg/patterns/space';
import { Store } from '../store/store';

globalStyles();
Expand Down Expand Up @@ -80,7 +81,9 @@ class App extends React.Component<AppProps> {
<MainArea>
<SideBar directionVertical hasPaddings>
<ElementPane>
<PageList store={this.props.store} />
<Space sizeBottom={Size.XL}>
<PageList store={this.props.store} />
</Space>
<ElementList store={this.props.store} />
</ElementPane>
<PatternsPane>
Expand Down

0 comments on commit 5c52909

Please sign in to comment.