diff --git a/src/components/Footer.astro b/src/components/Footer.astro index fdc9e27..0cd5013 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -3,8 +3,6 @@ import { SITE } from "@/config"; import Hr from "./Hr.astro"; import Socials from "./Socials.astro"; -const currentYear = new Date().getFullYear(); - export interface Props { noMarginTop?: boolean; } diff --git a/src/constants.ts b/src/constants.ts index b009895..0dd9f33 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,12 +1,12 @@ import type { Props } from "astro"; -import IconMail from "@/assets/icons/IconMail.svg"; +// import IconMail from "@/assets/icons/IconMail.svg"; +// import IconBrandX from "@/assets/icons/IconBrandX.svg"; +// import IconLinkedin from "@/assets/icons/IconLinkedin.svg"; +// import IconWhatsapp from "@/assets/icons/IconWhatsapp.svg"; +// import IconFacebook from "@/assets/icons/IconFacebook.svg"; +// import IconTelegram from "@/assets/icons/IconTelegram.svg"; +// import IconPinterest from "@/assets/icons/IconPinterest.svg"; import IconGitHub from "@/assets/icons/IconGitHub.svg"; -import IconBrandX from "@/assets/icons/IconBrandX.svg"; -import IconLinkedin from "@/assets/icons/IconLinkedin.svg"; -import IconWhatsapp from "@/assets/icons/IconWhatsapp.svg"; -import IconFacebook from "@/assets/icons/IconFacebook.svg"; -import IconTelegram from "@/assets/icons/IconTelegram.svg"; -import IconPinterest from "@/assets/icons/IconPinterest.svg"; import { SITE } from "@/config"; interface Social { diff --git a/src/styles/typography.css b/src/styles/typography.css index fe47160..ec1ffeb 100644 --- a/src/styles/typography.css +++ b/src/styles/typography.css @@ -28,7 +28,7 @@ } a { - @apply break-words text-foreground decoration-dashed underline-offset-4 hover:text-accent focus-visible:no-underline; + @apply wrap-break-word text-foreground decoration-dashed underline-offset-4 hover:text-accent focus-visible:no-underline; } ul { @@ -67,7 +67,7 @@ } code { - @apply rounded bg-muted/75 p-1 break-words text-foreground before:content-none after:content-none; + @apply rounded bg-muted/75 p-1 wrap-break-word text-foreground before:content-none after:content-none; } .astro-code code { @@ -75,11 +75,11 @@ } blockquote { - @apply border-s-accent/80 break-words opacity-80; + @apply border-s-accent/80 wrap-break-word opacity-80; } details { - @apply inline-block cursor-pointer text-foreground select-none [&_p]:hidden [&_ul]:!my-0; + @apply inline-block cursor-pointer text-foreground select-none [&_p]:hidden [&_ul]:my-0!; } summary {