Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(core): 🐛 notificationpopover is design is completed properly #374

Open
wants to merge 8 commits into
base: development
Choose a base branch
from
9 changes: 5 additions & 4 deletions package/components/utils/NotificationPopOver.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,19 @@ export default function NotificationPopOver() {
<>
<CoreBox styleClasses={[CoreClasses.POPOVER.CONTENT]}>
<CoreBox
styleClasses={[CoreClasses?.FLEX?.DIRECTION_ROW, CoreClasses.ALIGNMENT.JUSTIFY_CONTENT_SPACE_BETWEEN, CoreClasses.LAYOUT.VERTICAL_CENTER]}
styleClasses={[CoreClasses.DISPLAY.FLEX, CoreClasses.ALIGNMENT.JUSTIFY_CONTENT_SPACE_BETWEEN, CoreClasses.ALIGNMENT.ALIGN_ITEMS_CENTER]}
>
<CoreTypographyBody1>Notifications</CoreTypographyBody1>
<CoreTypographyBody1 styleClasses={[CoreClasses.MARGIN.MB0]}>Notifications</CoreTypographyBody1>

<CoreIconButton disabled>
<CoreIcon>clear_all</CoreIcon>
<CoreIcon>more_horiz</CoreIcon>
arkaprota marked this conversation as resolved.
Show resolved Hide resolved
</CoreIconButton>
</CoreBox>

<CoreDivider />
</CoreBox>

<CoreDivider styleClasses={[CoreClasses.MARGIN.M0]}/>

<CoreBox styleClasses={[CoreClasses.POPOVER.CONTENT]}>
<CoreTypographyBody1
sx={{ minWidth: "350px" }}
arkaprota marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
Loading