Skip to content

Commit

Permalink
fix(ui): rename the drawer css class to utrecht-drawer-custom
Browse files Browse the repository at this point in the history
Because of the new DS package version
commit sha: c6bdea6
  • Loading branch information
AliKdhim87 committed Oct 11, 2023
1 parent 8dbc36a commit 3a45fb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ui/src/components/Drawer/index.module.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.utrecht-drawer {
.utrecht-drawer-custom {
background-color: rgb(0 0 0 / 25%);
display: block;
inset-block-end: 0;
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/Drawer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const Drawer = forwardRef(
} as any;
return (
<FocusTrap active={open} focusTrapOptions={focusTrapOptions}>
<div className={css('utrecht-drawer', restProps.className)} ref={ref} {...restProps}>
<div className={css('utrecht-drawer-custom', restProps.className)} ref={ref} {...restProps}>
{children}
</div>
</FocusTrap>
Expand Down

0 comments on commit 3a45fb5

Please sign in to comment.