aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/app.tsx
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-01-14 22:26:06 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-01-14 22:26:06 +0100
commit8b4231e3109d4b29e4d90f4553f718a1d7867bc5 (patch)
treeb7c89bd60d01cca3692a3e6df580669fd08a4b27 /uidev/src/app.tsx
parentUpdate package.json (diff)
downloadferdium-app-8b4231e3109d4b29e4d90f4553f718a1d7867bc5.tar.gz
ferdium-app-8b4231e3109d4b29e4d90f4553f718a1d7867bc5.tar.zst
ferdium-app-8b4231e3109d4b29e4d90f4553f718a1d7867bc5.zip
Add buttons
Diffstat (limited to 'uidev/src/app.tsx')
-rw-r--r--uidev/src/app.tsx7
1 files changed, 7 insertions, 0 deletions
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';
7 7
8import { WithTheme } from './withTheme'; 8import { WithTheme } from './withTheme';
9 9
10import './stories/button.stories';
10import './stories/input.stories'; 11import './stories/input.stories';
11import './stories/toggle.stories'; 12import './stories/toggle.stories';
12 13
13import { store } from './stores'; 14import { store } from './stores';
14 15
16import { theme, ThemeType } from '@meetfranz/theme';
17const defaultTheme = theme(ThemeType.default);
18
15const styles = { 19const styles = {
16 '@global body': { 20 '@global body': {
17 margin: 0, 21 margin: 0,
22 fontSize: defaultTheme.uiFontSize,
23 fontFamily: '\'Open Sans\', sans-serif',
18 }, 24 },
19 container: { 25 container: {
20 display: 'flex', 26 display: 'flex',
@@ -24,6 +30,7 @@ const styles = {
24 width: 300, 30 width: 300,
25 position: 'fixed' as CSS.PositionProperty, 31 position: 'fixed' as CSS.PositionProperty,
26 listStyleType: 'none', 32 listStyleType: 'none',
33 fontSize: 14,
27 }, 34 },
28 storyList: { 35 storyList: {
29 paddingLeft: 18, 36 paddingLeft: 18,