mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 00:03:27 +10:00
fix: modify z-index for dialogs to fix popover being hidden
This commit is contained in:
@ -108,7 +108,7 @@ export const SectionDialog = <T extends SectionItem>({
|
|||||||
if (isDelete) {
|
if (isDelete) {
|
||||||
return (
|
return (
|
||||||
<AlertDialog open={isOpen} onOpenChange={close}>
|
<AlertDialog open={isOpen} onOpenChange={close}>
|
||||||
<AlertDialogContent className="z-[70]">
|
<AlertDialogContent className="z-50">
|
||||||
<Form {...form}>
|
<Form {...form}>
|
||||||
<form>
|
<form>
|
||||||
<AlertDialogHeader>
|
<AlertDialogHeader>
|
||||||
@ -133,7 +133,7 @@ export const SectionDialog = <T extends SectionItem>({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Dialog open={isOpen} onOpenChange={close}>
|
<Dialog open={isOpen} onOpenChange={close}>
|
||||||
<DialogContent className="z-[70]">
|
<DialogContent className="z-50">
|
||||||
<Form {...form}>
|
<Form {...form}>
|
||||||
<form className="space-y-6" onSubmit={form.handleSubmit(onSubmit)}>
|
<form className="space-y-6" onSubmit={form.handleSubmit(onSubmit)}>
|
||||||
<DialogHeader>
|
<DialogHeader>
|
||||||
|
|||||||
Reference in New Issue
Block a user