Changeset e6272d1 in Klonkt for src/views/pages


Ignore:
Timestamp:
06/24/2026 06:00:23 PM (3 months ago)
Author:
Robin Genis <roboburr@…>
Branches:
main
Children:
5410d4d
Parents:
a8399a6
Message:

fediverse comments: clean mobile meta (wrap name/handle, date on its own line)

The comment meta was a no-wrap flex row, so on narrow screens name/handle/date got
squeezed into thin columns that broke mid-word. Now it wraps, and on <=560px the
date drops to its own line.

Co-Authored-By: Claude <noreply@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/views/pages/post.ejs

    ra8399a6 re6272d1  
    279279  gap: 0.5rem;
    280280  align-items: baseline;
     281  flex-wrap: wrap;
     282  row-gap: 0.1rem;
    281283  font-size: 0.85rem;
    282284  margin-bottom: 0.3rem;
     
    285287.comment-author:hover { color: var(--accent); }
    286288.comment-time { color: var(--ink-muted, var(--ink-soft)); }
     289.comment-meta .fedi-handle { overflow-wrap: anywhere; }
     290@media (max-width: 560px) {
     291  .comment-meta .comment-time { flex-basis: 100%; font-size: 0.78rem; color: var(--ink-faint, var(--ink-muted)); }
     292}
    287293.comment-content {
    288294  white-space: pre-wrap;
Note: See TracChangeset for help on using the changeset viewer.