From 3ba7de9df735d1ee505f8ade34bf1950b83e64ea Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Sun, 4 Jan 2026 00:02:30 -0600 Subject: [PATCH] feat(style): add no-scrollbar class to hide scrollbars for a cleaner UI --- meshchatx/src/frontend/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/meshchatx/src/frontend/style.css b/meshchatx/src/frontend/style.css index 48a2b83..a4501d3 100644 --- a/meshchatx/src/frontend/style.css +++ b/meshchatx/src/frontend/style.css @@ -99,3 +99,12 @@ select.input-field option { .dark .file-input::file-selector-button { @apply bg-blue-500 hover:bg-blue-400 text-white; } + +.no-scrollbar::-webkit-scrollbar { + display: none; +} + +.no-scrollbar { + -ms-overflow-style: none; + scrollbar-width: none; +}