From 8b4231e3109d4b29e4d90f4553f718a1d7867bc5 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Mon, 14 Jan 2019 22:26:06 +0100 Subject: Add buttons --- uidev/src/app.tsx | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'uidev/src/app.tsx') diff --git a/uidev/src/app.tsx b/uidev/src/app.tsx index 6a5c578f2..0fd524e34 100644 --- a/uidev/src/app.tsx +++ b/uidev/src/app.tsx @@ -7,14 +7,20 @@ import injectSheet from 'react-jss'; import { WithTheme } from './withTheme'; +import './stories/button.stories'; import './stories/input.stories'; import './stories/toggle.stories'; import { store } from './stores'; +import { theme, ThemeType } from '@meetfranz/theme'; +const defaultTheme = theme(ThemeType.default); + const styles = { '@global body': { margin: 0, + fontSize: defaultTheme.uiFontSize, + fontFamily: '\'Open Sans\', sans-serif', }, container: { display: 'flex', @@ -24,6 +30,7 @@ const styles = { width: 300, position: 'fixed' as CSS.PositionProperty, listStyleType: 'none', + fontSize: 14, }, storyList: { paddingLeft: 18, -- cgit v1.2.3-54-g00ecf