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 @@