refactor(FE): Use className props for drawer widths

This commit is contained in:
rstubryan
2026-01-30 11:05:38 +07:00
parent b2670f76bf
commit 8babb4e3d7
2 changed files with 9 additions and 4 deletions
@@ -58,7 +58,10 @@ export default function UniformityPageWrapper({
zIndex='99999'
sidebarContent={isOpen ? <div className=''>{children}</div> : null}
expandedContent={expandedDrawerOpen ? expandedDrawerContent : null}
expandedWidth='w-[500px]'
className={{
drawerSidebarContent: 'w-[446px]',
drawerExpandedContent: 'w-[446px]',
}}
/>
</>
);