From cd8052c24e6714eea055464faf019f61589f8b3a Mon Sep 17 00:00:00 2001 From: suihan Date: Sat, 1 Aug 2020 18:15:14 +0900 Subject: [PATCH] fix an issue with position of activity items in previous version, if the screen width is narrow, valign of date is misaligned. --- static/js/contributions.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/static/js/contributions.js b/static/js/contributions.js index e6fabd0..53e0700 100644 --- a/static/js/contributions.js +++ b/static/js/contributions.js @@ -70,7 +70,7 @@ function monthly(year, month, posts) { const monthPosts = posts.filter(post => post.date.getMonth() === month); let liHtml = ''; for (const post of monthPosts) { - liHtml += `
  • + liHtml += `
  • ${post.title} - - -
  • `; }