fix posts showcase
fixed to publish current work to latest
This commit is contained in:
parent
f46a5383b1
commit
ba32147a6d
4 changed files with 5 additions and 5 deletions
|
@ -80,7 +80,7 @@ import Button from "@components/Button.astro";
|
|||
x-transition:leave-start="translate-y-0"
|
||||
x-transition:leave-end="-translate-y-full"
|
||||
id="mobileMenu"
|
||||
class="bg-primary shadow-secondary/10 fixed inset-x-0 top-0 z-98 flex max-h-svh flex-col overflow-y-auto rounded-b-md px-6 pt-20 pb-6 shadow-lg sm:hidden"
|
||||
class="bg-primary fixed inset-x-0 top-0 z-98 flex max-h-svh flex-col overflow-y-auto rounded-b-md px-6 pt-20 pb-6 sm:hidden"
|
||||
>
|
||||
{
|
||||
SITE.NAVLINKS.map((i) => (
|
||||
|
|
|
@ -8,14 +8,14 @@ type Props = {
|
|||
const { collection } = Astro.props;
|
||||
---
|
||||
|
||||
<li class="bg-secondary rounded-md p-8">
|
||||
<li class="border-tertiary/30 border-l">
|
||||
<a
|
||||
class="group hover:bg-tertiary/30 bg-none"
|
||||
href={`/${collection.collection}/${collection.slug}`}
|
||||
>
|
||||
<article class="flex flex-col">
|
||||
<article class="ml-2 flex flex-col">
|
||||
<h3 class="mb-1 font-semibold text-balance">
|
||||
<span class="text-primary">{collection.data.title}</span><span
|
||||
<span class="text-secondary">{collection.data.title}</span><span
|
||||
class="text-tertiary group-hover:text-accent ml-2 transition-colors"
|
||||
>{collection.data.description}</span
|
||||
>
|
||||
|
|
|
@ -41,7 +41,7 @@ export const SITE: Site = {
|
|||
},
|
||||
{
|
||||
name: "CV",
|
||||
href: "/cv.pdf",
|
||||
href: "/troy-lusty-cv.pdf",
|
||||
icon: "mdi:certificate",
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue