Skip to content

Commit

Permalink
Merge pull request #139 from alankritkhatri/fix-memory-blur
Browse files Browse the repository at this point in the history
fixed the blur in the add memory card/component
  • Loading branch information
Dhravya authored Jul 23, 2024
2 parents 8d1bb2f + 0132586 commit bd32692
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/app/(dash)/dialogContentContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export function DialogContentContainer({
}, []);

return (
<DialogContent className="sm:max-w-[475px] text-[#F2F3F5] rounded-2xl bg-background z-[39] backdrop-blur-md">
<DialogContent className="sm:max-w-[475px] text-[#F2F3F5] rounded-2xl bg-background z-[39]">
<form
action={async (e: FormData) => {
const content = e.get("content")?.toString();
Expand Down
2 changes: 1 addition & 1 deletion apps/web/app/(dash)/menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function Menu() {
</div>
</div>

<DialogContent className="sm:max-w-[475px] text-[#F2F3F5] rounded-2xl bg-background z-[39] backdrop-blur-md">
<DialogContent className="sm:max-w-[475px] text-[#F2F3F5] rounded-2xl bg-background z-[39]">
<form
action={async (e: FormData) => {
const content = e.get("content")?.toString();
Expand Down

0 comments on commit bd32692

Please sign in to comment.