Fix giao diện select scebario và modal add/edit
This commit is contained in:
parent
3fedaa33de
commit
b5bb90ca4e
File diff suppressed because it is too large
Load Diff
|
|
@ -26,6 +26,13 @@ const DialogConfirm = ({
|
|||
onClose={close}
|
||||
size="xs"
|
||||
radius="md"
|
||||
zIndex={100001}
|
||||
withinPortal={true}
|
||||
portalProps={{ target: document.body }}
|
||||
overlayProps={{
|
||||
backgroundOpacity: 0.7,
|
||||
blur: 2,
|
||||
}}
|
||||
>
|
||||
<Text
|
||||
size="sm"
|
||||
|
|
|
|||
|
|
@ -218,7 +218,10 @@ function DrawerScenario({
|
|||
justifyContent: "center",
|
||||
backdropFilter: "blur(3px)",
|
||||
}}
|
||||
onClick={handleClose}
|
||||
onClick={(e) => {
|
||||
e.stopPropagation();
|
||||
handleClose();
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
|
|
|
|||
Loading…
Reference in New Issue