This commit is contained in:
Mikola
2023-11-19 20:01:27 +03:00
parent 44725b014b
commit 9697c375e7
11 changed files with 85 additions and 25 deletions

View File

@ -151,6 +151,9 @@ export const Summary = () => {
</a>
);
})}
{!Boolean(gitInfo.length) &&
<p className="noGitItems">Нет актуальных проектов</p>
}
</div>
</div>
)}

View File

@ -298,6 +298,16 @@
column-gap: 25px;
justify-content: space-between;
.noGitItems {
width: 100%;
font-size: 20px;
background: #FFFFFF;
border-radius: 12px;
padding: 35px 30px 30px 45px;
color: #000000;
font-weight: 600;
}
.gitItem {
width: 48%;
display: flex;