chore: bulk delete modal alignment fix (#2483)

This commit is contained in:
Anmol Singh Bhatia 2023-10-19 14:02:42 +05:30 committed by GitHub
parent 15f621ad91
commit 3a44d4bf35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -157,7 +157,8 @@ export const BulkDeleteIssuesModal: React.FC<Props> = (props) => {
leaveFrom="opacity-100 scale-100"
leaveTo="opacity-0 scale-95"
>
<Dialog.Panel className="relative mx-auto max-w-2xl transform rounded-xl border border-custom-border-200 bg-custom-background-100 shadow-2xl transition-all">
<Dialog.Panel className="relative flex items-center justify-center w-full ">
<div className="w-full max-w-2xl transform divide-y divide-custom-border-200 divide-opacity-10 rounded-xl border border-custom-border-200 bg-custom-background-100 shadow-2xl transition-all">
<form>
<Combobox
onChange={(val: string) => {
@ -250,6 +251,7 @@ export const BulkDeleteIssuesModal: React.FC<Props> = (props) => {
</div>
)}
</form>
</div>
</Dialog.Panel>
</Transition.Child>
</div>