You've already forked AstralRinth
forked from didirus/AstralRinth
* also fixes spacing issue in collections card small width Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com>
This commit is contained in:
@@ -318,7 +318,10 @@
|
|||||||
</span>
|
</span>
|
||||||
<span v-else class="text">{{ formatMessage(messages.profileNoProjectsLabel) }}</span>
|
<span v-else class="text">{{ formatMessage(messages.profileNoProjectsLabel) }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="['collections'].includes(route.params.projectType)" class="collections-grid">
|
<div
|
||||||
|
v-if="!route.params.projectType || route.params.projectType === 'collections'"
|
||||||
|
class="collections-grid"
|
||||||
|
>
|
||||||
<nuxt-link
|
<nuxt-link
|
||||||
v-for="collection in collections.sort(
|
v-for="collection in collections.sort(
|
||||||
(a, b) => new Date(b.created) - new Date(a.created),
|
(a, b) => new Date(b.created) - new Date(a.created),
|
||||||
@@ -902,6 +905,7 @@ export default defineNuxtComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
gap: var(--gap-md);
|
gap: var(--gap-md);
|
||||||
|
margin-bottom: var(--gap-md);
|
||||||
|
|
||||||
.collection-item {
|
.collection-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
Reference in New Issue
Block a user