From d750541c809f68f7d4540e126b83cbda4078f210 Mon Sep 17 00:00:00 2001 From: lana-k Date: Wed, 19 May 2021 15:46:18 +0200 Subject: [PATCH] App diagnostic dialog #46 --- package.json | 2 +- src/views/Main/AppDiagnosticInfo.vue | 82 ++++++++++++++++++++++++++++ src/views/Main/MainMenu.vue | 13 ++++- 3 files changed, 93 insertions(+), 4 deletions(-) create mode 100644 src/views/Main/AppDiagnosticInfo.vue diff --git a/package.json b/package.json index db0d6b7..4b9b7c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sqliteviz", - "version": "0.11.0", + "version": "0.13.0", "license": "Apache-2.0", "private": true, "scripts": { diff --git a/src/views/Main/AppDiagnosticInfo.vue b/src/views/Main/AppDiagnosticInfo.vue new file mode 100644 index 0000000..01ad76a --- /dev/null +++ b/src/views/Main/AppDiagnosticInfo.vue @@ -0,0 +1,82 @@ + + + + + diff --git a/src/views/Main/MainMenu.vue b/src/views/Main/MainMenu.vue index 3d19255..5b65fc0 100644 --- a/src/views/Main/MainMenu.vue +++ b/src/views/Main/MainMenu.vue @@ -5,7 +5,7 @@ My queries Help -
+ @@ -64,12 +65,14 @@ import TextField from '@/components/TextField' import CloseIcon from '@/components/svg/close' import storedQueries from '@/lib/storedQueries' +import AppDiagnosticInfo from './AppDiagnosticInfo' export default { name: 'MainMenu', components: { TextField, - CloseIcon + CloseIcon, + AppDiagnosticInfo }, data () { return { @@ -213,7 +216,7 @@ nav { top: 0; left: 0; width: 100vw; - padding: 0 52px; + padding: 0 16px 0 52px; z-index: 999; } a { @@ -238,4 +241,8 @@ button { #save-note img { margin: -3px 6px 0 0; } + +#nav-buttons { + display: flex; +}