Adjust DM contact card spacing

This commit is contained in:
AidarKC
2026-09-02 14:58:17 +04:00
parent 1373283947
commit 90e37c198f
+20
View File
@@ -10791,3 +10791,23 @@ body.chat-topbar-overlay .page-header.app-topbar-shell .header-center {
flex: 1 1 auto;
overflow: hidden;
}
/* Channel list: last message preview + timestamp.
* Override the legacy `.channel-row-time { width: 100% }`: that rule made the
* timestamp consume the whole preview row, collapsing the message text to zero
* width and clipping the rightmost timestamp character. */
.channels-screen--list .channel-row-preview-line .channel-row-time {
width: auto !important;
max-width: max-content !important;
flex: 0 0 auto !important;
margin: 0 2px 0 0 !important;
padding: 0 !important;
box-sizing: border-box !important;
white-space: nowrap !important;
}
.channels-screen--list .channel-row-preview-line .channel-row-message {
width: auto !important;
flex: 1 1 0 !important;
min-width: 0 !important;
}