From 42b51ce5041703bb7624add13fb0bf913cf7c4ff Mon Sep 17 00:00:00 2001 From: tch1001 Date: Thu, 8 Dec 2022 14:25:24 +0800 Subject: [PATCH] hacky mobile view for tech demo --- src/App.vue | 19 ++ src/components/DataPanel.vue | 4 +- src/components/Navbar.vue | 64 ++-- src/store/index.ts | 12 +- src/views/Graph.vue | 549 ++++++++++++++++++----------------- 5 files changed, 359 insertions(+), 289 deletions(-) diff --git a/src/App.vue b/src/App.vue index 9bea57c..97f1f10 100644 --- a/src/App.vue +++ b/src/App.vue @@ -156,4 +156,23 @@ body { .command { cursor: pointer } + +.list-item{ + width: 100%; + background: white; + padding: 1rem; + margin-left: 1rem; + margin-right: 1rem; + margin-top: 1rem; +} +.list-title{ + font-size: 2rem; +} +.list-description{ + font-size: 2rem; +} +.list-layout{ + height: 100%; + background: white; +} diff --git a/src/components/DataPanel.vue b/src/components/DataPanel.vue index c39b48b..37e9d68 100644 --- a/src/components/DataPanel.vue +++ b/src/components/DataPanel.vue @@ -1,5 +1,5 @@