Skip to content

Commit

Permalink
feat(dashboard): update push background image to iPhone version
Browse files Browse the repository at this point in the history
  • Loading branch information
BiswaViraj committed Dec 18, 2024
1 parent 2ebe53b commit 5281fa9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
File renamed without changes
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ export const PushContentContainerPreview = ({ children, className, ...rest }: HT

export const PushBackgroundWithPhone = ({ children, className, ...rest }: HTMLAttributes<HTMLDivElement>) => {
return (
<div className={cn("relative h-60 w-full max-w-72 bg-[url('/images/push-bg.svg')] bg-cover", className)} {...rest}>
<div
className={cn("relative h-60 w-full max-w-72 bg-[url('/images/phones/iphone-push.svg')] bg-cover", className)}
{...rest}
>
{children}
</div>
);
Expand Down

0 comments on commit 5281fa9

Please sign in to comment.