aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/app.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'uidev/src/app.tsx')
-rw-r--r--uidev/src/app.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/uidev/src/app.tsx b/uidev/src/app.tsx
index c025e8825..41930e805 100644
--- a/uidev/src/app.tsx
+++ b/uidev/src/app.tsx
@@ -1,4 +1,4 @@
1import * as CSS from 'csstype'; 1import { Property } from 'csstype';
2import { Classes } from 'jss'; 2import { Classes } from 'jss';
3import { observer } from 'mobx-react'; 3import { observer } from 'mobx-react';
4import DevTools from 'mobx-react-devtools'; 4import DevTools from 'mobx-react-devtools';
@@ -35,7 +35,7 @@ const styles = {
35 }, 35 },
36 menu: { 36 menu: {
37 width: 300, 37 width: 300,
38 position: 'fixed' as CSS.Property.Position, 38 position: 'fixed' as Property.Position,
39 listStyleType: 'none', 39 listStyleType: 'none',
40 fontSize: 14, 40 fontSize: 14,
41 overflow: 'scroll', 41 overflow: 'scroll',
@@ -66,7 +66,7 @@ const styles = {
66 borderBottom: '1px solid #CFCFCF', 66 borderBottom: '1px solid #CFCFCF',
67 }, 67 },
68 sectionLink: { 68 sectionLink: {
69 fontWeight: 'bold' as CSS.Property.FontWeight, 69 fontWeight: 'bold' as Property.FontWeight,
70 color: '#000', 70 color: '#000',
71 textDecoration: 'none', 71 textDecoration: 'none',
72 }, 72 },