aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--package-lock.json5
-rw-r--r--package.json1
-rw-r--r--src/Main.tsx1
3 files changed, 7 insertions, 0 deletions
diff --git a/package-lock.json b/package-lock.json
index 15ae9d764..955f0f3ae 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -4482,6 +4482,11 @@
"remove-trailing-separator": "^1.0.1"
}
},
+ "normalize.css": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz",
+ "integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg=="
+ },
"npm-run-path": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
diff --git a/package.json b/package.json
index f0c5c84c5..08e999058 100644
--- a/package.json
+++ b/package.json
@@ -40,6 +40,7 @@
"mobx-react": "^5.3.5",
"mobx-react-devtools": "^6.0.3",
"node-sass": "^4.11.0",
+ "normalize.css": "^8.0.1",
"prosemirror-commands": "^1.0.7",
"prosemirror-history": "^1.0.3",
"prosemirror-keymap": "^1.0.1",
diff --git a/src/Main.tsx b/src/Main.tsx
index 09c2b111f..3d0cf052f 100644
--- a/src/Main.tsx
+++ b/src/Main.tsx
@@ -1,6 +1,7 @@
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import "./Main.scss";
+import "normalize.css"
import { NodeCollectionStore } from './stores/NodeCollectionStore';
import { StaticTextNodeStore } from './stores/StaticTextNodeStore';
import { VideoNodeStore } from './stores/VideoNodeStore';