feat: Include chat public key in conversation data and enhance chat page layout for full width and dynamic height.

This commit is contained in:
Christomatt
2026-01-27 04:16:05 +01:00
parent 5262cb1dbd
commit c007741b65
4 changed files with 18 additions and 5 deletions
+6 -1
View File
@@ -1,7 +1,12 @@
/* Chat Page Styles */
.chat-page {
height: calc(100vh - 60px);
height: 100vh;
/* Use dynamic viewport height for mobile browsers */
height: 100dvh;
max-height: 100dvh;
display: flex;
flex-direction: column;
}
.chat-container {