diff --git a/src/components/BaseHead.astro b/src/components/BaseHead.astro
index 5c3b713..6e48d84 100644
--- a/src/components/BaseHead.astro
+++ b/src/components/BaseHead.astro
@@ -1,14 +1,15 @@
---
+import { ViewTransitions } from 'astro:transitions'
import '../styles/fonts.css'
import '../styles/global.css'
export interface Props {
- title: string;
- description: string;
- permalink: string;
+ title: string
+ description: string
+ permalink: string
}
-const { title, description, permalink } = Astro.props;
+const { title, description, permalink } = Astro.props
const socialUrl = Astro.site.href + 'assets/social.png'
---
@@ -17,7 +18,6 @@ const socialUrl = Astro.site.href + 'assets/social.png'
-
{title}
@@ -37,13 +37,18 @@ const socialUrl = Astro.site.href + 'assets/social.png'
+
+
-
diff --git a/src/components/Logo.astro b/src/components/Logo.astro
index 43b9a2f..bf09838 100644
--- a/src/components/Logo.astro
+++ b/src/components/Logo.astro
@@ -3,8 +3,14 @@
display: block;
width: 75px;
}
+
+ @media screen and (max-width: 520px) {
+ img {
+ display: none;
+ }
+ }
-
+
diff --git a/src/styles/global.css b/src/styles/global.css
index ff51f62..8638ab2 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -14,6 +14,17 @@
--primary-color: #548e9b;
}
+html {
+ overflow-y: scroll;
+}
+
+@supports (scrollbar-gutter: stable) {
+ html {
+ overflow-y: auto;
+ scrollbar-gutter: stable;
+ }
+}
+
*,
*:before,
*:after {