diff options
-rw-r--r-- | src/client/react/index.js | 2 | ||||
-rw-r--r-- | src/client/react/index.scss | 12 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/client/react/index.js b/src/client/react/index.js index 566c847..95cf2ab 100644 --- a/src/client/react/index.js +++ b/src/client/react/index.js @@ -37,6 +37,8 @@ import reducer from './reducers'; import Index from './components/page/Index'; import User from './components/page/User'; +import './index.scss'; + moment.locale('nl'); // eslint-disable-next-line no-underscore-dangle diff --git a/src/client/react/index.scss b/src/client/react/index.scss new file mode 100644 index 0000000..4042d06 --- /dev/null +++ b/src/client/react/index.scss @@ -0,0 +1,12 @@ +* { + box-sizing: border-box; +} + +body { + font-family: 'Roboto'; + margin: 0; +} + +:global(.grow) { + flex-grow: 1; +} |