Update project card spacing

This commit is contained in:
2023-02-19 19:43:16 +01:00
parent a59a54061d
commit 6bdb1b2666
2 changed files with 16 additions and 13 deletions

View File

@ -1,5 +1,5 @@
<template>
<div class="border rounded-md p-3 px-3 mx-auto my-5 w-full lg:w-2/3 xl:w-1/2">
<div class="border rounded-md p-3 mx-auto w-full lg:w-2/3 xl:w-1/2">
<h3 class="text-2xl font-semibold text-center text-gray-900 dark:text-white">{{ props.title }}</h3>
<div class="text-center mb-2">
<a v-for="link in props.links" :href="link.url" class="font-mono inline-block hover:underline mx-2">{{ link.label }}</a>

View File

@ -3,22 +3,25 @@
<main>
<h1 class="text-5xl font-bold text-center mb-5">{{ t("projects") }}</h1>
<h2 class="text-3xl text-center mt-10 mb-3">{{ t("wip") }}</h2>
<Wirefilter />
<NotXiaGithubio />
<div class="[&>*]:my-14 first:[&>*]:mt-8">
<Wirefilter />
<NotXiaGithubio />
</div>
<h2 class="text-3xl text-center mt-10 mb-3">{{ t("completed") }}</h2>
<TweetAnalysis />
<AnimalHouse />
<PandOSplus />
<Imaging />
<MNKGame />
<Platform />
<PathfindingVisualizer />
<SortingVisualizer />
<div class="[&>*]:my-14 first:[&>*]:mt-8">
<TweetAnalysis />
<AnimalHouse />
<PandOSplus />
<Imaging />
<MNKGame />
<Platform />
<PathfindingVisualizer />
<SortingVisualizer />
</div>
</main>
</template>