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

Replace MaterialUI in FileUpload.tsx #5720

Merged
merged 9 commits into from
Jul 4, 2023
3 changes: 2 additions & 1 deletion src/Components/Common/Dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ const DialogModal = (props: DialogProps) => {
className={classNames(
className,
fixedWidth && "max-w-md w-full",
"transform rounded-2xl bg-white p-6 text-left align-middle shadow-xl transition-all"
className?.includes("bg-") || "bg-white",
rithviknishad marked this conversation as resolved.
Show resolved Hide resolved
"transform rounded-2xl p-6 text-left align-middle shadow-xl transition-all"
)}
>
<Dialog.Title
Expand Down
Loading