fix: update layout class for improved scrolling behavior

- Modified the layout class to apply 'md:overscroll-y-none' to allow refreshing on mobile
This commit is contained in:
gbuomprisco
2025-12-31 11:35:53 +01:00
parent 4aac04ef0a
commit ab57b24518
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ function getRootClassName(theme: string) {
const fontsClassName = getFontsClassName(theme);
return cn(
'bg-background min-h-screen overscroll-y-none antialiased',
'bg-background min-h-screen antialiased md:overscroll-y-none',
fontsClassName,
);
}