Skip to content

Commit

Permalink
fix(ui): drawer component missing closing bracket in style calc (#10411)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpopus authored Jan 7, 2025
1 parent b774f55 commit ab53aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/elements/Drawer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const Drawer: React.FC<Props> = ({
<div
className={`${baseClass}__content`}
style={{
width: `calc(100% - (${drawerDepth} * var(--gutter-h))`,
width: `calc(100% - (${drawerDepth} * var(--gutter-h)))`,
}}
>
<div className={`${baseClass}__blur-bg-content`} />
Expand Down

0 comments on commit ab53aba

Please sign in to comment.