Compare commits

..
4 Commits
Author SHA1 Message Date
Laan Tungir d9503c1532 Revert: remove layout:'inline' from mountComposer in post-feed.html — made it worse 2026-06-26 07:18:32 -04:00
Laan Tungir fa0859dcdd Fix post-feed.html: reply composer width — add layout:'inline' to mountComposer
The composer wrapper defaults to width:60% (post-composer.css). Adding
layout:'inline' applies the --inline class which sets width:100%.
2026-06-25 21:29:31 -04:00
Laan Tungir 0c340316ae Fix post-feed.html: reply composer width — add width:100% and box-sizing:border-box to .topPostComposerInput 2026-06-25 21:22:38 -04:00
Laan Tungir 313a55992f Change Nutzap button label from peanut emoji to text 'Nutzap' 2026-06-25 21:18:47 -04:00
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -882,7 +882,7 @@ const ICON_LABELS = {
comment: { label: 'Comment', activeLabel: 'Comment' },
quote: { label: 'Quote', activeLabel: 'Quote' },
zap: { label: 'Zap', activeLabel: 'Zap' },
nutzap: { label: '🥜', activeLabel: '🥜' }
nutzap: { label: 'Nutzap', activeLabel: 'Nutzap' }
};
/**
+3 -3
View File
@@ -1,5 +1,5 @@
{
"VERSION": "v0.7.34",
"VERSION_NUMBER": "0.7.34",
"BUILD_DATE": "2026-06-26T01:13:55.033Z"
"VERSION": "v0.7.38",
"VERSION_NUMBER": "0.7.38",
"BUILD_DATE": "2026-06-26T11:18:32.425Z"
}
+2
View File
@@ -110,6 +110,8 @@
}
.topPostComposerInput {
width: 100%;
box-sizing: border-box;
min-height: 6em;
padding: 8px;
line-height: 1.4;