We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a93094f commit bbd0ab4Copy full SHA for bbd0ab4
apps/tuk-web/src/shared/components/ui/template/BackgroundTemplate.tsx
@@ -5,7 +5,7 @@ import { cn } from '@/shared/lib';
5
type DefaultComponentProps = PropsWithChildren & { className?: string };
6
7
const BackgroundRoot = ({ children, className }: DefaultComponentProps) => {
8
- return <div className={cn('', className)}>{children}</div>;
+ return <div className={cn('overflow-hidden', className)}>{children}</div>;
9
};
10
11
const Background = ({ children, className }: DefaultComponentProps) => {
0 commit comments