merge dark and light style (CSS)

This commit is contained in:
2024-02-09 11:02:52 +01:00
parent ca683c4cfa
commit 61067252eb
8 changed files with 43 additions and 31 deletions

View File

@ -7,7 +7,7 @@
</script>
<div
class="mx-2 w-72 my-4 bg-base-300 dark:bg-base-300 border border-gray-200 rounded-lg shadow dark:border-gray-700"
class="mx-2 w-72 my-4 bg-neutral-800 rounded-lg shadow dark:border-gray-700"
>
<div class="flex justify-end px-4 pt-4" />
<div class="flex flex-col items-center pb-10">
@ -16,12 +16,15 @@
src={image}
alt="Portrait"
/>
<h5 class="mb-1 text-xl font-medium text-gray-900 dark:text-white">
<h5 class="mb-1 text-xl font-medium text-white">
{name}
</h5>
<span class="text-sm text-gray-500 dark:text-gray-400">{description}</span>
<span class="text-sm text-gray-400">{description}</span>
<div class="flex mt-4 space-x-3 md:mt-6">
<a href={site} class="btn btn-tertiary">Site</a>
<a
href={site}
class="btn btn-tertiary border-none bg-neutral-700 text-white">Site</a
>
</div>
</div>
</div>