mirror of https://github.com/langgenius/dify.git
fix: z-index (#4065)
This commit is contained in:
parent
fe9bf5fc4a
commit
11275cbaaf
|
@ -28,7 +28,7 @@ export default function Modal({
|
||||||
}: IModal) {
|
}: IModal) {
|
||||||
return (
|
return (
|
||||||
<Transition appear show={isShow} as={Fragment}>
|
<Transition appear show={isShow} as={Fragment}>
|
||||||
<Dialog as="div" className={`relative z-10 ${wrapperClassName}`} onClose={onClose}>
|
<Dialog as="div" className={`relative z-30 ${wrapperClassName}`} onClose={onClose}>
|
||||||
<Transition.Child
|
<Transition.Child
|
||||||
as={Fragment}
|
as={Fragment}
|
||||||
enter="ease-out duration-300"
|
enter="ease-out duration-300"
|
||||||
|
|
Loading…
Reference in New Issue