FInnished adding collection.

This commit is contained in:
Daniel 2022-06-24 01:34:23 +04:30
parent 9cac04eb7b
commit 6e27ed574f
2 changed files with 19 additions and 1 deletions

View File

@ -68,6 +68,11 @@ const List = ({ data, tags, collections, reFetch, SetLoader, lightMode }) => {
</a> </a>
</div> </div>
<div className="title">{e.title}</div> <div className="title">{e.title}</div>
<div className="list-collection-label">
<Link to={`/collections/${e.collection}`}>
{e.collection}
</Link>
</div>
<div className="tags"> <div className="tags">
{e.tag.map((e, i) => { {e.tag.map((e, i) => {
const tagPath = `/tags/${e}`; const tagPath = `/tags/${e}`;

View File

@ -220,4 +220,17 @@
.title-delete-group { .title-delete-group {
text-align: center; text-align: center;
} }
.list-collection-label {
margin-top: 10px;
}
.list-collection-label a::before {
font-family: "Font Awesome 5 Free";
content: " ";
}
.list-collection-label a {
color: inherit;
}