apply link styling to previously added
This commit is contained in:
parent
97de79913f
commit
d5538e740b
2 changed files with 7 additions and 3 deletions
|
@ -27,12 +27,12 @@ const { collection } = Astro.props;
|
||||||
href={`/${collection.collection}/${collection.slug}`}
|
href={`/${collection.collection}/${collection.slug}`}
|
||||||
aria-label={collection.data.title}></a>
|
aria-label={collection.data.title}></a>
|
||||||
<h3
|
<h3
|
||||||
class="text-white z-10 w-fit text-xl font-semibold opacity-0 transition-opacity duration-300 group-hover:opacity-100"
|
class="z-10 w-fit text-xl font-semibold text-white opacity-0 transition-opacity duration-300 group-hover:opacity-100"
|
||||||
>
|
>
|
||||||
{collection.data.title}
|
{collection.data.title}
|
||||||
</h3>
|
</h3>
|
||||||
<div
|
<div
|
||||||
class="text-neutral-400 z-10 w-fit gap-y-1 overflow-hidden text-sm leading-6 opacity-0 transition-opacity duration-500 group-hover:opacity-100"
|
class="z-10 w-fit gap-y-1 overflow-hidden text-sm leading-6 text-neutral-400 opacity-0 transition-opacity duration-500 group-hover:opacity-100"
|
||||||
>
|
>
|
||||||
{
|
{
|
||||||
collection.data.collection ? (
|
collection.data.collection ? (
|
||||||
|
|
|
@ -74,7 +74,11 @@ import Link from "@components/Link.astro";
|
||||||
My specific chosen area of focus is design, lighting, and rendering
|
My specific chosen area of focus is design, lighting, and rendering
|
||||||
focusing on 3D environments within software such as Blender and Unreal
|
focusing on 3D environments within software such as Blender and Unreal
|
||||||
Engine. Using either real-time or offline rendering techniques. In
|
Engine. Using either real-time or offline rendering techniques. In
|
||||||
addition to this I am also very interested in web development, with this sites <a href="https://github.com/troylusty/troylusty.com">source code</a> being public.
|
addition to this I am also very interested in web development, with this
|
||||||
|
site's <a
|
||||||
|
class="text-secondary decoration-tertiary underline decoration-wavy"
|
||||||
|
href="https://github.com/troylusty/troylusty.com">source code</a
|
||||||
|
> being public.
|
||||||
</p>
|
</p>
|
||||||
<Skills />
|
<Skills />
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Add table
Reference in a new issue