Small Fixes
This commit is contained in:
@@ -3,8 +3,6 @@ import { SITE } from "@/config";
|
|||||||
import Hr from "./Hr.astro";
|
import Hr from "./Hr.astro";
|
||||||
import Socials from "./Socials.astro";
|
import Socials from "./Socials.astro";
|
||||||
|
|
||||||
const currentYear = new Date().getFullYear();
|
|
||||||
|
|
||||||
export interface Props {
|
export interface Props {
|
||||||
noMarginTop?: boolean;
|
noMarginTop?: boolean;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
import type { Props } from "astro";
|
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 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";
|
import { SITE } from "@/config";
|
||||||
|
|
||||||
interface Social {
|
interface Social {
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
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 {
|
ul {
|
||||||
@@ -67,7 +67,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
code {
|
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 {
|
.astro-code code {
|
||||||
@@ -75,11 +75,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
@apply border-s-accent/80 break-words opacity-80;
|
@apply border-s-accent/80 wrap-break-word opacity-80;
|
||||||
}
|
}
|
||||||
|
|
||||||
details {
|
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 {
|
summary {
|
||||||
|
|||||||
Reference in New Issue
Block a user