style fix
This commit is contained in:
@ -44,6 +44,7 @@ import TrackerSelectColumn from "@components/TrackerSelectColumn/TrackerSelectCo
|
||||
import arrow from "assets/icons/arrows/arrowCalendar.png";
|
||||
import arrowDown from "assets/icons/arrows/selectArrow.png";
|
||||
import calendarIcon from "assets/icons/calendar.svg";
|
||||
import category from "assets/icons/category.svg";
|
||||
import close from "assets/icons/close.png";
|
||||
import commentsBoard from "assets/icons/commentsBoard.svg";
|
||||
import del from "assets/icons/delete.svg";
|
||||
@ -483,8 +484,10 @@ export const ProjectTracker = () => {
|
||||
<div className="tracker__tabs__content__tasks tasks active__content">
|
||||
<div className="tasks__head">
|
||||
<div className="tasks__head__wrapper">
|
||||
<h5>{projectBoard.name}</h5>
|
||||
|
||||
<div className="tasks__head__title">
|
||||
<img src={category}></img>
|
||||
<h5>{projectBoard.name}</h5>
|
||||
</div>
|
||||
<div className="tasks__head__add">
|
||||
<BaseButton
|
||||
onClick={() => {
|
||||
@ -541,7 +544,6 @@ export const ProjectTracker = () => {
|
||||
>
|
||||
+
|
||||
</span>
|
||||
<p>добавить участника</p>
|
||||
|
||||
<ListEmployees
|
||||
active={personListOpen}
|
||||
@ -635,7 +637,11 @@ export const ProjectTracker = () => {
|
||||
}}
|
||||
>
|
||||
<p>Список тегов</p>
|
||||
<span>+</span>
|
||||
<img
|
||||
className={tags.open ? "open" : ""}
|
||||
src={arrowDown}
|
||||
alt="arrow"
|
||||
/>
|
||||
</div>
|
||||
{tags.open && (
|
||||
<div className="tags__list">
|
||||
@ -755,6 +761,19 @@ export const ProjectTracker = () => {
|
||||
>
|
||||
{tags.add ? "Добавить" : "Изменить"}
|
||||
</button>
|
||||
{tags.add && (
|
||||
<button
|
||||
className={"form-tag__btn"}
|
||||
onClick={() =>
|
||||
setTags((prevState) => ({
|
||||
...prevState,
|
||||
add: !tags.add
|
||||
}))
|
||||
}
|
||||
>
|
||||
Отмена
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user