diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro
index 8ebe851..aed6209 100644
--- a/src/layouts/Base.astro
+++ b/src/layouts/Base.astro
@@ -54,11 +54,11 @@ const titleTag = title != undefined ? `${title} | xevion.blog` : 'xevion.blog';
-
@@ -78,8 +78,7 @@ const titleTag = title != undefined ? `${title} | xevion.blog` : 'xevion.blog';
Atom
|
- #{build_revision.slice(0, 7)}
-
+ #{build_revision.slice(0, 7)}
diff --git a/src/layouts/Post.astro b/src/layouts/Post.astro
index d93183c..81e3763 100644
--- a/src/layouts/Post.astro
+++ b/src/layouts/Post.astro
@@ -9,7 +9,7 @@ const { post } = Astro.props;
const { title, pubDate, tags } = post.data;
---
-
+
{title}
@@ -23,8 +23,10 @@ const { title, pubDate, tags } = post.data;
{pubDate}
-
- { tags.join(" ")}
+
+ {tags.map((tag) => (
+ { tag }
+ ))}
diff --git a/src/styles/code.scss b/src/styles/code.scss
index 5ac39f8..05cff11 100644
--- a/src/styles/code.scss
+++ b/src/styles/code.scss
@@ -18,6 +18,7 @@ h6 {
padding: 0.1rem 0.27rem;
border-radius: 3px;
border: 1px solid rgba(white, 0.5);
+ white-space: nowrap;
}
}
diff --git a/src/styles/glitch.scss b/src/styles/glitch.scss
index 54047c7..f67b1ef 100644
--- a/src/styles/glitch.scss
+++ b/src/styles/glitch.scss
@@ -1,9 +1,6 @@
header {
- max-width: 100%;
- width: 100%;
-
.stack {
- overflow: hidden;
+ // overflow: hidden;
display: grid;
grid-template-columns: 1fr;
@@ -17,7 +14,6 @@ header {
font-weight: bold;
grid-row-start: 1;
grid-column-start: 1;
- font-size: 4rem;
--stack-height: calc(100% / var(--stacks) - 1px);
--inverse-index: calc(calc(var(--stacks) - 1) - var(--index));
diff --git a/src/styles/global.scss b/src/styles/global.scss
index 2425810..667b6c1 100644
--- a/src/styles/global.scss
+++ b/src/styles/global.scss
@@ -59,33 +59,11 @@ body {
align-items: center;
}
-.body-container {
- max-width: 46em;
- margin: 0 1em;
-}
-
p,
table {
margin: 0.5em 0;
}
-header {
- font-size: 4em;
- text-align: center;
- text-transform: lowercase;
- letter-spacing: 0.1em;
-}
-
-@include for-size(tablet-portrait-up) {
- header {
- font-size: 3em;
- }
-}
-
-header span {
- letter-spacing: 0;
-}
-
aside,
blockquote {
margin: 1em 1em 1em 4em;
@@ -284,7 +262,7 @@ article {
}
}
-.build-revision {
+#commit-id {
font-family: "CMU Typewriter Text", sans-serif;
&:not(:hover) {