tracker tasks create modal
This commit is contained in:
@ -7,6 +7,7 @@ export const ModalLayout = ({
|
||||
setActive,
|
||||
children,
|
||||
styles,
|
||||
type,
|
||||
...props
|
||||
}) => {
|
||||
return (
|
||||
@ -17,7 +18,7 @@ export const ModalLayout = ({
|
||||
>
|
||||
<div
|
||||
className={
|
||||
styles ? `modal-layout__content ${styles}` : "modal-layout__content"
|
||||
styles ? `modal-layout__content ${styles}` : `modal-layout__content ${type}`
|
||||
}
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
|
@ -2,7 +2,7 @@
|
||||
z-index: 9;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-color: rgba(0, 0, 0, 0.11);
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
@ -104,6 +104,11 @@
|
||||
}
|
||||
}
|
||||
|
||||
.createTiketProject {
|
||||
padding: 0;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.ck-editor {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
Reference in New Issue
Block a user