tracker tasks create modal

This commit is contained in:
Mikola
2023-09-13 17:45:31 +03:00
parent 8ed1859e93
commit a84672f76f
9 changed files with 407 additions and 89 deletions

View File

@ -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()}
>

View File

@ -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;
}