Skip to content

Commit

Permalink
fixed the blur in the add memory card/component by removing a tailwin…
Browse files Browse the repository at this point in the history
…d class backdrop-blur-md. made changes in dash/dialogContentContainer.tsx anad dash/menu.tsx
  • Loading branch information
alankritkhatri committed Jul 23, 2024
1 parent f310781 commit 0132586
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 0132586

Please sign in to comment.