diff --git a/src/components/UI/ModalTiket/ModalTiket.js b/src/components/UI/ModalTiket/ModalTiket.js index fb695aed..9f7397c2 100644 --- a/src/components/UI/ModalTiket/ModalTiket.js +++ b/src/components/UI/ModalTiket/ModalTiket.js @@ -14,8 +14,21 @@ export const ModalTiket = ({ active, setActive }) => { name: "Разработка трекера", code: "PR - 2245", creator: "Василий Тарасов", + descriptions: + "На многих страницах сайта отсутствуют или некорректно заполнены метатеги Description. Это может негативно повлиять на представление сайта в результатах поиска.Необходимо исправить все страницы где есть ошибки или отсутствует Title и Description.", }); + const [workers] = useState([ + { + name: "Дмитрий Рогов", + avatar: avatarMock2, + }, + { + name: "Марина Серова", + avatar: avatarMock1, + }, + ]); + return (
{
{tiket.code}
-

- На многих страницах сайта отсутствуют или некорректно заполнены - метатеги Description. Это может негативно повлиять на - представление сайта в результатах поиска.Необходимо исправить - все страницы где есть ошибки или отсутствует Title и - Description. +

{tiket.descriptions}

+ +

{tiket.descriptions}

+
+
+

+ + {0} + Коментариев

- -

- На многих страницах сайта отсутствуют или некорректно заполнены - метатеги Description. Это может негативно повлиять на - представление сайта в результатах поиска.Необходимо исправить - все страницы где есть ошибки или отсутствует Title и - Description. +

+ + {0} + Файлов

-
workers
+
+ {tiket.code} +

Создатель : {tiket.creator}

+
+ {workers.map((worker) => { + return ( +
+ +

{worker.name}

+
+ ); + })} +
+
+ + Добавить участников +
+
+ +
); diff --git a/src/components/UI/ModalTiket/ModalTiket.scss b/src/components/UI/ModalTiket/ModalTiket.scss index 04e69bce..55415d06 100644 --- a/src/components/UI/ModalTiket/ModalTiket.scss +++ b/src/components/UI/ModalTiket/ModalTiket.scss @@ -56,6 +56,18 @@ } &__task { + margin-top: 22px; + padding: 18px; + + h5 { + font-family: "Inter", sans-serif; + font-weight: 500; + font-style: normal; + font-size: 16px; + line-height: 24px; + + color: #1a1919; + } } &__description { @@ -64,11 +76,69 @@ font-size: 14px; line-height: 140%; color: #252c32; + text-align: justify; + } + + .image-task { + margin: 0 0 20px 0; + } + } + + &__communication { + display: flex; + flex-direction: row; + margin: 29px 0 0 -5px; + + .comment { + width: 100px; + justify-content: space-evenly; + } + + .comment, + .file { + display: flex; + align-items: center; + } + + .file { + justify-content: space-between; + margin-left: 20px; + width: 70px; } } } .workers { + border-left: 1px solid #f1f1f1; width: 300px; + padding: 40px; + + span { + font-family: "Inter", sans-serif; + font-weight: 500; + font-size: 11px; + + color: #807777; + } + + &__creator { + font-size: 14px; + line-height: 32px; + font-weight: 500; + color: #2d4a17; + } + + .worker { + display: flex; + flex-direction: row; + align-items: center; + margin-bottom: 15px; + + p { + margin: 0 0 0 11px; + font-size: 12px; + color: #807777; + } + } } }