diff --git a/src/components/ColorSwatch.tsx b/src/components/ColorSwatch.tsx index 6218646..a865628 100644 --- a/src/components/ColorSwatch.tsx +++ b/src/components/ColorSwatch.tsx @@ -65,9 +65,7 @@ export const ColorSwatch: FunctionalComponent = ({ >
{title && ( - - {title} - + {title} )} {color} diff --git a/src/components/Headline.tsx b/src/components/Headline.tsx index 909a9ca..611c7a1 100644 --- a/src/components/Headline.tsx +++ b/src/components/Headline.tsx @@ -16,7 +16,7 @@ export const Headline: FunctionalComponent = ({ }) => { const Tag = as; const classes = cx( - 'text-5 font-black tracking-tight mbe-10 mbs-12 dark:font-extrabold [text-wrap:balance]', + 'text-5 font-black tracking-tight mbe-10 dark:font-extrabold [text-wrap:balance]', className ); diff --git a/src/components/Picture.astro b/src/components/Picture.astro index cb7c7ba..76d675f 100644 --- a/src/components/Picture.astro +++ b/src/components/Picture.astro @@ -13,7 +13,7 @@ interface Props extends PictureConfigOptions { const { class: className, noMargin, src, ...props } = Astro.props; const classes = cx( - 'image-shadow block h-auto w-full rounded-1 border-1 border-solid border-black/[0.1] bg-black/[0.1] shadow shadow-black/10 mbe-10 mbs-0 dark:border-white/[0.1] dark:opacity-[0.87] dark:shadow-white/10', + 'image-shadow block h-auto w-full rounded-1 border-1 border-solid border-black/[0.1] bg-black/[0.1] shadow shadow-black/10 mbe-10 mbs-0 dark:border-white/[0.1] dark:opacity-[0.87] dark:shadow-white/5 border-x-0', { 'mbe-0': noMargin }, className ); diff --git a/src/components/RSSLink.astro b/src/components/RSSLink.astro index b02d4f8..6d908a4 100644 --- a/src/components/RSSLink.astro +++ b/src/components/RSSLink.astro @@ -5,9 +5,9 @@ import { Link, Subsubheadline } from '.'; ---
- Stay up to date. + Stay up to date.

- + = ({ }) => { const Tag = as; const classes = cx( - 'text-4 font-black tracking-tight mbe-8 mbs-12 dark:font-extrabold [text-wrap:balance]', + 'text-4 font-black tracking-tight mbe-8 dark:font-extrabold [text-wrap:balance]', className ); diff --git a/src/components/Subsubheadline.tsx b/src/components/Subsubheadline.tsx index 6ba78a2..e6820a3 100644 --- a/src/components/Subsubheadline.tsx +++ b/src/components/Subsubheadline.tsx @@ -16,7 +16,7 @@ export const Subsubheadline: FunctionalComponent = ({ }) => { const Tag = as; const classes = cx( - 'text-3 font-black tracking-tight mbe-5 mbs-12 dark:font-extrabold [text-wrap:balance]', + 'text-3 font-black tracking-tight mbe-5 dark:font-extrabold [text-wrap:balance]', className ); diff --git a/src/components/Title.tsx b/src/components/Title.tsx index 86203fa..2974593 100644 --- a/src/components/Title.tsx +++ b/src/components/Title.tsx @@ -15,7 +15,10 @@ export const Title: FunctionalComponent = ({ ...props }) => { const Tag = as; - const classes = cx('text-7 font-black tracking-tight mbe-13 dark:font-extrabold [text-wrap:balance]', className); + const classes = cx( + 'text-7 font-black tracking-tight mbe-13 dark:font-extrabold [text-wrap:balance]', + className + ); return ( diff --git a/src/pages/[...slug].astro b/src/pages/[...slug].astro index 8ea9769..bba15ce 100644 --- a/src/pages/[...slug].astro +++ b/src/pages/[...slug].astro @@ -137,25 +137,6 @@ const description = '…';