File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -333,13 +333,16 @@ const TutorialPage = ({
333
333
{ filteredTutorials . map ( ( tutorial ) => {
334
334
return (
335
335
< LinkFlex
336
- className = "mb-px w-full flex-col justify-between border-b p-8 text-border no-underline duration-100 hover:rounded-sm hover: bg-background-low hover:shadow-table-box-hover "
336
+ className = "mb-px w-full flex-col justify-between border-b p-8 text-border no-underline duration-100 hover:bg-background-highlight "
337
337
key = { tutorial . href }
338
338
href = { tutorial . href ?? undefined }
339
339
>
340
340
< Flex className = "mb-8 flex-col items-start justify-between gap-y-4 md:-mb-4 md:flex-row" >
341
341
< Text
342
- className = { `relative me-0 text-2xl font-semibold text-body after:ml-2 after:inline-block after:italic after:transition-all after:duration-100 after:ease-in-out after:content-['↗'] md:me-24 ${ tutorial . isExternal ? "after:inline-block" : "after:hidden" } ` }
342
+ className = { cn (
343
+ "relative me-0 text-2xl font-semibold text-body after:ml-2 after:inline-block after:italic after:transition-all after:duration-100 after:ease-in-out after:content-['↗'] md:me-24" ,
344
+ tutorial . isExternal ? "after:inline-block" : "after:hidden"
345
+ ) }
343
346
>
344
347
{ tutorial . title }
345
348
</ Text >
You can’t perform that action at this time.
0 commit comments