From ee3101c5c666ae84fc1708543aa4e06e710c01fa Mon Sep 17 00:00:00 2001 From: LukeGus Date: Wed, 22 Oct 2025 12:09:35 -0500 Subject: [PATCH] fix: Remove vertical scrolling in the tab bar and dashboard and reduce scrollbar height in tab bar --- index.html | 31 +++++++++++++++++++++ src/ui/Desktop/Apps/Dashboard/Dashboard.tsx | 8 ++++-- src/ui/Desktop/Navigation/TopNavbar.tsx | 2 +- 3 files changed, 38 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 5c925758..29230a71 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,37 @@ Termix +
diff --git a/src/ui/Desktop/Apps/Dashboard/Dashboard.tsx b/src/ui/Desktop/Apps/Dashboard/Dashboard.tsx index 0256afdc..bbecf9ae 100644 --- a/src/ui/Desktop/Apps/Dashboard/Dashboard.tsx +++ b/src/ui/Desktop/Apps/Dashboard/Dashboard.tsx @@ -546,7 +546,9 @@ export function Dashboard({ {t("dashboard.reset")} -
+
{recentActivityLoading ? (
@@ -650,7 +652,9 @@ export function Dashboard({ {t("dashboard.serverStats")}

-
+
{serverStatsLoading ? (
diff --git a/src/ui/Desktop/Navigation/TopNavbar.tsx b/src/ui/Desktop/Navigation/TopNavbar.tsx index 4d9d4e8f..7f98e168 100644 --- a/src/ui/Desktop/Navigation/TopNavbar.tsx +++ b/src/ui/Desktop/Navigation/TopNavbar.tsx @@ -486,7 +486,7 @@ export function TopNavbar({ >
{tabs.map((tab: TabData, index: number) => { const isActive = tab.id === currentTab;