Skip to content

Commit bbd0ab4

Browse files
committed
fix: test
1 parent a93094f commit bbd0ab4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/tuk-web/src/shared/components/ui/template/BackgroundTemplate.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { cn } from '@/shared/lib';
55
type DefaultComponentProps = PropsWithChildren & { className?: string };
66

77
const BackgroundRoot = ({ children, className }: DefaultComponentProps) => {
8-
return <div className={cn('', className)}>{children}</div>;
8+
return <div className={cn('overflow-hidden', className)}>{children}</div>;
99
};
1010

1111
const Background = ({ children, className }: DefaultComponentProps) => {

0 commit comments

Comments
 (0)