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

Commit

Permalink
fix(lsg): use getSpace function
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexpeschel committed Dec 14, 2017
1 parent e00df37 commit 985be31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lsg/patterns/panes/patterns-pane/index.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { colors } from '../../colors';
import * as React from 'react';
import { Size } from '../../space';
import { getSpace, Size } from '../../space';
import styled from 'styled-components';

const StyledPatternsPane = styled.div`
box-sizing: border-box;
flex-grow: 2;
flex-shrink: 0;
flex-basis: 40%;
padding: ${Size.L}px 0;
padding: ${getSpace(Size.L)}px 0;
border-top: 2px solid ${colors.grey70.toString()};
overflow: scroll;
`;
Expand Down

0 comments on commit 985be31

Please sign in to comment.