diff options
author | Noah Loomans <noahloomans@gmail.com> | 2018-03-21 15:44:32 +0100 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2018-03-21 15:44:32 +0100 |
commit | 777a75aa80f58566b43bba04db04a3d1cc23c66b (patch) | |
tree | 21e1686bf9f46889d2c9d390be2c449bd936b561 /src | |
parent | 2d54f8c7a6ee92bc51dd26244517d18ee7958490 (diff) |
Migrate index styles
Diffstat (limited to 'src')
-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; +} |