Resize post entries to h2 with no horizontal margin
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user