Skip to content

Commit dcccc3f

Browse files
now trust
1 parent a2efa4b commit dcccc3f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/lib/Project.svelte

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515

1616
>
1717
<div
18-
class="relative overflow-hidden text-ellipses h-full w-1/3 text-left pl-[4%] py-[4%] flex flex-col cursor-pointer group-hover:pl-[8%] transition-all duration-[400ms]"
18+
class="relative overflow-hidden text-ellipses h-full w-1/3 text-left pl-[4%] py-[4%] flex flex-col cursor-pointer delay-150 group-hover:pl-[8%] transition-all duration-[400ms]"
1919
on:click={() =>
2020
(window.location.pathname = `/projects/${project.name?.trim().replaceAll(' ', '-')}`)}
2121
>
2222
<div
23-
class="text-2xl font-bold transition-all duration-[400ms] group-hover:text-sky-500 group-hover:text-xl flex items-center gap-[2%]"
23+
class="text-2xl font-bold transition-all duration-[400ms] delay-150 group-hover:text-sky-500 group-hover:text-xl flex items-center gap-[2%]"
2424
>
2525
{project.name || ''}
2626
{#if project.completed}
@@ -64,16 +64,16 @@
6464
<div class="text-md pl-[4%] font-thin">{project.date}</div>
6565
</div>
6666
<div
67-
class="cursor-pointer w-1/3 text-center align-middle text-ellipsis flex flex-col justify-center group-hover:text-sky-500 transition-all duration-200"
67+
class="cursor-pointer w-1/3 text-center align-middle text-ellipsis flex flex-col justify-center delay-150 group-hover:text-sky-500 transition-all duration-200"
6868
on:click={() =>
6969
(window.location.pathname = `/projects/${project.name?.trim().replaceAll(' ', '-')}`)}
7070
>
7171
{project.description?.overview || ''}
7272
</div>
7373
<div
74-
class="relative overflow-auto h-full w-1/3 text-right py-[4%] pr-[4%] flex flex-col group-hover:pr-[8%] transition-all duration-[400ms]"
74+
class="relative overflow-auto h-full w-1/3 text-right py-[4%] pr-[4%] flex flex-col delay-150 group-hover:pr-[8%] transition-all duration-[400ms]"
7575
>
76-
<div class="text-2xl font-bold group-hover:text-xl transition-all duration-200">
76+
<div class="text-2xl font-bold delay-150 group-hover:text-xl transition-all duration-200">
7777
{project.category}
7878
</div>
7979
<div class="flex flex-row-reverse">

src/lib/ProjectPreview.svelte

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
(window.location.pathname = `/projects/${project.name?.trim().replaceAll(' ', '-')}`)}
2020
>
2121
<div
22-
class="relative overflow-auto h-full w-1/3 text-left pl-[4%] py-[4%] flex flex-col group-hover:pl-[8%] transition-all duration-[400ms]"
22+
class="relative overflow-auto h-full w-1/3 text-left pl-[4%] py-[4%] flex flex-col delay-150 group-hover:pl-[8%] transition-all duration-[400ms]"
2323
>
2424
<div
25-
class="text-2xl font-bold transition-all duration-[400ms] group-hover:text-sky-500 flex items-center gap-[2%]"
25+
class="text-2xl font-bold transition-all duration-[400ms] delay-150 group-hover:text-sky-500 flex items-center gap-[2%]"
2626
>
2727
{project.name}
2828
{#if project.completed}
@@ -66,7 +66,7 @@
6666
<div class="text-md pl-[4%] font-thin">{project.date}</div>
6767
</div>
6868
<div
69-
class="relative overflow-auto h-full w-1/2 text-right ml-[33%] py-[4%] pr-[4%] flex flex-col group-hover:pr-[8%] delay-75 transition-all duration-[400ms]"
69+
class="relative overflow-auto h-full w-1/2 text-right ml-[33%] py-[4%] pr-[4%] flex flex-col delay-150 group-hover:pr-[8%] delay-75 transition-all duration-[400ms]"
7070
>
7171
<div class="text-2xl font-bold">{project.category}</div>
7272
<div class="flex flex-row-reverse">

0 commit comments

Comments
 (0)