diff --git a/src/components/Head.astro b/src/components/Head.astro
index 453ade7..34878fa 100644
--- a/src/components/Head.astro
+++ b/src/components/Head.astro
@@ -1,6 +1,7 @@
---
import { SITE } from "@consts";
import gradient from "../../public/assets/gradient.avif";
+import { ClientRouter } from 'astro:transitions';
interface Props {
title: string;
@@ -92,11 +93,7 @@ import redhatmono from "@fontsource-variable/red-hat-mono/files/red-hat-mono-lat
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/src/styles/global.css b/src/styles/global.css
index f915d20..c3b3c96 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -25,14 +25,22 @@
@layer components {
.prose img {
- @apply transition-transform hover:scale-[98%] active:scale-[200%];
+ @apply cursor-pointer transition-transform hover:scale-[98%] active:scale-[200%];
}
}
@media print {
body {
- margin: 0;
- color: #000;
- background-color: #fff;
+ background: none;
+ color: black;
+ }
+ header,
+ footer,
+ main {
+ max-width: unset !important;
+ }
+ header,
+ footer {
+ display: none;
}
}