Fixed statistics page
This commit is contained in:
@ -4,6 +4,8 @@ import { Link } from "react-router-dom";
|
||||
|
||||
import { setToggleTab } from "@redux/projectsTrackerSlice";
|
||||
|
||||
import { copyProjectLink } from "@utils/helper";
|
||||
|
||||
import { Navigation } from "@components/Navigation/Navigation";
|
||||
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
|
||||
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
||||
@ -103,7 +105,9 @@ const Statistics = () => {
|
||||
<div className="statistics-header__menu">
|
||||
<h1>Статистика проекта</h1>
|
||||
<img src={link} alt="#" />
|
||||
<span className="return-text">ссылка на проект</span>
|
||||
<span className="return-text" onClick={copyProjectLink("62")}>
|
||||
ссылка на проект
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div className="statistics-header__return">
|
||||
|
@ -17,6 +17,16 @@
|
||||
transform: rotate(-180deg);
|
||||
margin-right: 22px;
|
||||
}
|
||||
|
||||
a {
|
||||
cursor: pointer;
|
||||
transition: 0.4s;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline !important;
|
||||
transition: 0.4s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__menu {
|
||||
@ -33,6 +43,13 @@
|
||||
|
||||
span {
|
||||
margin-left: 17px;
|
||||
cursor: pointer;
|
||||
transition: 0.4s;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
transition: 0.4s;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user