From b4a96c3f187aa730ebafccb775fe590bd0ac7ae7 Mon Sep 17 00:00:00 2001 From: dtookey-at-783322121474 Date: Wed, 14 Oct 2020 14:00:12 -0400 Subject: [PATCH] tweaked a few layouts --- assets/pages/default.css | 5 +++++ assets/pages/index.html | 8 ++++++++ assets/pages/scripts/index_app.js | 2 +- package.json | 2 +- 4 files changed, 15 insertions(+), 2 deletions(-) diff --git a/assets/pages/default.css b/assets/pages/default.css index 284f9d2..4d2e62b 100644 --- a/assets/pages/default.css +++ b/assets/pages/default.css @@ -13,6 +13,11 @@ body{ .file-table{ border: 1px solid black; + border-radius: 3px; +} + +.red-list{ + background: red; } .file-row { diff --git a/assets/pages/index.html b/assets/pages/index.html index a1c6e4b..e787c28 100644 --- a/assets/pages/index.html +++ b/assets/pages/index.html @@ -13,6 +13,14 @@

Go to the second page +

+ +



diff --git a/assets/pages/scripts/index_app.js b/assets/pages/scripts/index_app.js index b29ff4b..14c3d61 100644 --- a/assets/pages/scripts/index_app.js +++ b/assets/pages/scripts/index_app.js @@ -42,7 +42,7 @@ document.querySelector('#btnVideo').addEventListener('click', () => { }); document.querySelector('#btnWeb').addEventListener('click', () => { - + launchWebsite("https://gmail.com") }); loadDocuments(); \ No newline at end of file diff --git a/package.json b/package.json index c99f199..8277215 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "clean": "rm -rf out && rm util/*", + "clean": "rm -rf util && rm -rf out", "build": "tsc -p ./util_src --outDir ./util", "start": "npm run build && electron .", "dev": "npm run build && electron . --debug",