From 894939a55fef5dbb25b5183f4a55d7218412f6dd Mon Sep 17 00:00:00 2001 From: Nathan Upchurch Date: Mon, 29 Jun 2026 19:13:54 -0500 Subject: [PATCH] Minor fixes --- content/now/index.njk | 2 +- public/css/comments.css | 10 ++++++++-- public/css/index.css | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/content/now/index.njk b/content/now/index.njk index f304db5..30c5f55 100644 --- a/content/now/index.njk +++ b/content/now/index.njk @@ -38,7 +38,7 @@ tags: {% set postsCount = collections.now | removeMostRecent | length %} {% if postsCount > 1 %}

Previous Entries:

-{% set postslist = collections.now | removeMostRecent %} +{% set postslist = collections.now | removeMostRecent | reverse %} {% set showPostListHeader = false %} {% include "postslist.njk" %} {% endif %} diff --git a/public/css/comments.css b/public/css/comments.css index 0504845..2213af9 100644 --- a/public/css/comments.css +++ b/public/css/comments.css @@ -168,9 +168,9 @@ p.isso-input-wrapper { border-top-left-radius: 0; color: var(--background-color); padding: var(--space-l) calc((100cqw - (var(--grid-gutter) * 11)) / 12) var(--space-2xs) calc((100cqw - (var(--grid-gutter) * 11)) / 12); - margin-left: calc(((100cqw - (var(--grid-gutter) * 11)) / 12) * -1) !important; + /*! margin-left: calc(((100cqw - (var(--grid-gutter) * 11)) / 12) * -1) !important; */ margin-block: 1lh 1lh; - width: calc(((100cqw) / 12) * 14); + /*! width: calc(((100cqw) / 12) * 14); */ } @container (width < 460px) { .isso-postbox { @@ -223,6 +223,12 @@ textarea.isso-textarea { width: 100%; } +/* reply form */ +.isso-root > .isso-comment > .isso-text-wrapper > .isso-postbox { + width: 100%; + margin-left: auto; +} + @media (max-width: 900px) { .isso-postbox { margin-left: auto !important; diff --git a/public/css/index.css b/public/css/index.css index 0f835b4..f0a35ca 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -407,7 +407,7 @@ h3 { text-wrap: pretty; &::before { color: var(--contrast-color); - content: "🢒"; + content: "▸"; margin-left: calc(1em * -1); } }