fix(messaging-ui): stop Start-chat/Create buttons stretching full width

The new-conversation + channel-create forms are flex columns, so the submit
button stretched to full width and read as thin. Give it align-self:flex-start
+ a 38px height so it sizes to its label like a normal button.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-22 19:27:27 +05:30
parent 4faf05fee9
commit c4254749a4
2 changed files with 6 additions and 0 deletions
@@ -506,6 +506,12 @@
flex-direction: column; flex-direction: column;
gap: 10px; gap: 10px;
} }
/* Submit buttons in the stacked create/compose forms size to content, not full width. */
.miu-newconv .miu-send,
.miu-channel-create .miu-send {
align-self: flex-start;
height: 38px;
}
.miu-person-row { .miu-person-row {
display: flex; display: flex;
align-items: center; align-items: center;