refactor(frontend): revise the scrollbar styling on the settings page (#11297)

This commit is contained in:
Hiep Le
2025-10-09 23:47:58 +07:00
committed by GitHub
parent 6c8bef60f6
commit 4285c49edd
2 changed files with 4 additions and 2 deletions

View File

@@ -48,7 +48,9 @@ export function SettingsLayout({
/>
{/* Main content */}
<main className="flex-1 overflow-auto">{children}</main>
<main className="flex-1 overflow-auto custom-scrollbar-always">
{children}
</main>
</div>
</div>
);

View File

@@ -68,7 +68,7 @@ function SettingsScreen() {
<SettingsLayout navigationItems={navItems} isSaas={isSaas}>
<div className="flex flex-col gap-6 h-full">
<Typography.H2>{t(currentSectionTitle)}</Typography.H2>
<div className="flex-1 overflow-auto">
<div className="flex-1 overflow-auto custom-scrollbar-always">
<Outlet />
</div>
</div>