diff --git a/.gitignore b/.gitignore index f21686d..5e24053 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ dist *.log *.tmp + +*cache* \ No newline at end of file diff --git a/package.json b/package.json index 9367b3f..34fca8a 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "license": "MIT", "devDependencies": { "assert": "^2.0.0", + "buffer": "^5.5.0", "events": "^3.1.0", "parcel": "^2.8.3", "parcel-namer-without-hash": "^0.0.1", diff --git a/src/index.html b/src/index.html index 3f231d9..0b6b165 100644 --- a/src/index.html +++ b/src/index.html @@ -3,7 +3,7 @@ resume.js - + diff --git a/src/rootstyle.css b/src/rootstyle.css deleted file mode 120000 index 283be1b..0000000 --- a/src/rootstyle.css +++ /dev/null @@ -1 +0,0 @@ -../../../public/static/ui/resume.css \ No newline at end of file diff --git a/src/standalone_page.css b/src/standalone_page.css new file mode 100644 index 0000000..184fa33 --- /dev/null +++ b/src/standalone_page.css @@ -0,0 +1,13 @@ +body, html { + margin: 0; + padding: 0; +} + +div#resume_js_app { + background: #212121; + position: fixed; + top:0;left:0; + width: 100%; + height: 100%; + padding: 16px 10px; +} \ No newline at end of file