FInnished adding collection.
This commit is contained in:
parent
9cac04eb7b
commit
6e27ed574f
|
@ -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}`;
|
||||||
|
|
|
@ -221,3 +221,16 @@
|
||||||
.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;
|
||||||
|
}
|
||||||
|
|
Ŝarĝante…
Reference in New Issue