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 eabc3ab commit f14f410Copy full SHA for f14f410
src/components/layout/authenticated-layout.tsx
@@ -26,11 +26,11 @@ export function AuthenticatedLayout({ children }: AuthenticatedLayoutProps) {
26
27
// If layout is fixed, set the height
28
// to 100svh to prevent overflow
29
- 'has-[[data-layout=fixed]]:h-svh',
+ 'has-data-[layout=fixed]:h-svh',
30
31
// If layout is fixed and sidebar is inset,
32
// set the height to 100svh - spacing (total margins) to prevent overflow
33
- 'peer-data-[variant=inset]:has-[[data-layout=fixed]]:h-[calc(100svh-(var(--spacing)*4))]'
+ 'peer-data-[variant=inset]:has-data-[layout=fixed]:h-[calc(100svh-(var(--spacing)*4))]'
34
)}
35
>
36
{children ?? <Outlet />}
0 commit comments