From 4d5f40f021dcdfa867ffb716f678e4d637660ff9 Mon Sep 17 00:00:00 2001 From: Haris Razis Date: Wed, 6 Jan 2021 19:07:59 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20Add=20basic=20ui=20items=20of=20das?= =?UTF-8?q?hboard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Buggy on small screens. --- web/public/index.html | 25 ++++++---- web/src/components/Navbar.vue | 41 ++++++++++++++--- web/src/components/Sidebar.vue | 84 ++++++++++++++++++++++++++++++++++ web/src/components/Tile.vue | 67 +++++++++++++++++++++++++++ web/src/views/Dashboard.vue | 24 ++++++---- 5 files changed, 218 insertions(+), 23 deletions(-) create mode 100644 web/src/components/Sidebar.vue create mode 100644 web/src/components/Tile.vue diff --git a/web/public/index.html b/web/public/index.html index 4123528..c46c86c 100644 --- a/web/public/index.html +++ b/web/public/index.html @@ -1,17 +1,24 @@ - + <%= htmlWebpackPlugin.options.title %> - - - -
- - + + + + +
+ + diff --git a/web/src/components/Navbar.vue b/web/src/components/Navbar.vue index d4cd1f8..2db61fb 100644 --- a/web/src/components/Navbar.vue +++ b/web/src/components/Navbar.vue @@ -1,11 +1,10 @@