Skip to content

Commit

Permalink
Update layout
Browse files Browse the repository at this point in the history
  • Loading branch information
KuznetsovNikita committed Mar 5, 2024
1 parent 7044dc1 commit 0d3c23a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion packages/uikit/src/components/Notification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ const NotificationWrapper: FC<PropsWithChildren<{ entered: boolean }>> = ({
}, [sdk, entered]);

return (
<NotificationContainer scrollbarWidth={scrollbarWidth}>{children}</NotificationContainer>
<NotificationContainer className="notification-container" scrollbarWidth={scrollbarWidth}>
{children}
</NotificationContainer>
);
};

Expand Down
4 changes: 2 additions & 2 deletions packages/uikit/src/styles/globalStyle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ export const GlobalStyleCss = css`
.win32 #body::-webkit-scrollbar,
.linux #body::-webkit-scrollbar,
.win32 .scrollable::-webkit-scrollbar,
.linux .scrollable::-webkit-scrollbar,
.win32 .notification-container::-webkit-scrollbar,
.linux .notification-container::-webkit-scrollbar,
.win32 .dialog-content::-webkit-scrollbar,
.linux .dialog-content::-webkit-scrollbar {
width: 0;
Expand Down

0 comments on commit 0d3c23a

Please sign in to comment.