From 7f1b26a59c431c06cdb6d4109103677c7046fc07 Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Sun, 13 Jul 2025 20:48:28 +0200 Subject: [PATCH] style(ui): hide scrollbar in left column --- layouts/client.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/layouts/client.vue b/layouts/client.vue index b609c2c..3781fe9 100644 --- a/layouts/client.vue +++ b/layouts/client.vue @@ -261,6 +261,12 @@ function createDropdown() { align-items: center; gap: 1.5dvh; overflow-y: scroll; + scrollbar-width: none; + -ms-overflow-style: none; +} + +#left-column-top::-webkit-scrollbar, #left-column-bottom::-webkit-scrollbar { + display: none; } #left-column-bottom { @@ -331,4 +337,4 @@ function createDropdown() { color: var(--primary-highlighted-color) } - \ No newline at end of file +