From bd3782cd93341722b64af1042a63f75d116f36b1 Mon Sep 17 00:00:00 2001 From: Raymonzut <40148684+Raymonzut@users.noreply.github.com> Date: Fri, 21 Aug 2020 21:49:54 +0200 Subject: [PATCH] Resize post entries to h2 with no horizontal margin --- client/public/assets/styling/general.css | 5 +++++ client/public/posts.mjs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/client/public/assets/styling/general.css b/client/public/assets/styling/general.css index 578adba..c1376ef 100644 --- a/client/public/assets/styling/general.css +++ b/client/public/assets/styling/general.css @@ -21,6 +21,11 @@ nav { font-style: italic; } +h2 { + font-size: 0.6em; + margin: auto 0; +} + @media (prefers-color-scheme: light) { :root { --primary-color: #ffffeb; diff --git a/client/public/posts.mjs b/client/public/posts.mjs index ff27c4b..e6fb25d 100644 --- a/client/public/posts.mjs +++ b/client/public/posts.mjs @@ -36,7 +36,7 @@ async function updatePosts() { month_DOM.textContent = month month_lists[i].forEach((post, i) => { - const post_DOM = document.createElement("h6") + const post_DOM = document.createElement("h2") post_DOM.textContent = `${post.date.substring(0, 10)} - ` const post_link = document.createElement("a")