diff --git a/index.html b/index.html index 2d8e8aa..f957f80 100644 --- a/index.html +++ b/index.html @@ -59,7 +59,7 @@ .image img { width: 100%; - height: 70%; + height: 80%; object-fit: cover; } @@ -192,8 +192,7 @@ const blurbElem = document.createElement('span'); blurbElem.classList.add('game-blurb'); - console.log(blurb, blurb?.length); - blurbElem.textContent = blurb ?? '(no comment)'; + blurbElem.textContent = blurb?.length < 1 ? blurb : '(no comment)'; entryElem.appendChild(blurbElem); if (url) {