fixed the blur in the add memory card/component by removing a tailwind class backdrop-blur-md. made changes in dash/dialogContentContainer.tsx anad dash/menu.tsx

This commit is contained in:
Alankrit Khatri 2024-07-23 09:59:40 +05:30
parent f310781ad7
commit 0132586d1b
2 changed files with 2 additions and 2 deletions

View file

@ -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();

View file

@ -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();