From f3345dd0b7702254a1650994121e4e19b67408f7 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Wed, 3 May 2023 11:18:30 -0700 Subject: [PATCH] mnav: more fixes Signed-off-by: Varun Patil --- src/App.vue | 3 +++ src/components/ClusterHList.vue | 8 +------- src/components/Explore.vue | 26 ++++++++++++++++++++++++-- src/components/SplitTimeline.vue | 1 + src/main.ts | 1 + 5 files changed, 30 insertions(+), 9 deletions(-) diff --git a/src/App.vue b/src/App.vue index 60bd4b3f..dc43cc1f 100644 --- a/src/App.vue +++ b/src/App.vue @@ -209,6 +209,9 @@ export default defineComponent({ // Register navigation items on config change subscribe(this.configEventName, this.refreshNav); + + // Register global functions + globalThis.showSettings = () => this.showSettings(); }, mounted() { diff --git a/src/components/ClusterHList.vue b/src/components/ClusterHList.vue index 7c44e323..de62ed4d 100644 --- a/src/components/ClusterHList.vue +++ b/src/components/ClusterHList.vue @@ -7,7 +7,7 @@ -
+
@@ -77,12 +77,6 @@ export default defineComponent({ aspect-ratio: 1; position: relative; } - - // Hide scrollbars - &::-webkit-scrollbar { - display: none; - } - scrollbar-width: none; } } diff --git a/src/components/Explore.vue b/src/components/Explore.vue index a58f453c..7a2a740c 100644 --- a/src/components/Explore.vue +++ b/src/components/Explore.vue @@ -1,5 +1,5 @@