CallTimer: fix horizontal text cutoff

This commit is contained in:
Vendicated 2025-09-20 20:37:01 +02:00
parent 56d25b03f9
commit 3005906a28
No known key found for this signature in database
GPG key ID: D66986BAF75ECF18
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
.align-chat-input [class*="panels"] [class*="inner_"], [class*="panels"] [class*="inner_"],
.align-chat-input [class*="rtcConnectionStatus_"] { [class*="rtcConnectionStatus_"] {
height: fit-content; height: fit-content !important;
} }

View file

@ -95,6 +95,6 @@ export default definePlugin({
deps: [channelId] deps: [channelId]
}); });
return <p style={{ margin: 0 }}>Connected for <span style={{ fontFamily: "var(--font-code)" }}>{formatDuration(time)}</span></p>; return <p style={{ margin: 0, fontFamily: "var(--font-code)" }}>{formatDuration(time)}</p>;
} }
}); });