Resize post entries to h2 with no horizontal margin

This commit is contained in:
Raymonzut
2020-08-21 21:49:54 +02:00
parent f3f90df38e
commit bd3782cd93
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -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;
+1 -1
View File
@@ -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")