spora 0.2.15 → 0.2.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/web-chat/chat.html +18 -3
- package/package.json +1 -1
package/dist/web-chat/chat.html
CHANGED
|
@@ -20,10 +20,23 @@
|
|
|
20
20
|
flex-direction: column;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
.top-bar {
|
|
24
|
+
padding: 0.625rem 1rem;
|
|
25
|
+
display: flex;
|
|
26
|
+
align-items: center;
|
|
27
|
+
background: #0a0a0a;
|
|
28
|
+
flex-shrink: 0;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.top-bar .logo-img {
|
|
32
|
+
height: 20px;
|
|
33
|
+
width: auto;
|
|
34
|
+
opacity: 0.5;
|
|
35
|
+
}
|
|
36
|
+
|
|
23
37
|
/* Twitter DM-style profile header */
|
|
24
38
|
.profile-header {
|
|
25
|
-
padding:
|
|
26
|
-
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
39
|
+
padding: 0.5rem 1rem 1rem;
|
|
27
40
|
display: flex;
|
|
28
41
|
flex-direction: column;
|
|
29
42
|
align-items: center;
|
|
@@ -193,7 +206,6 @@
|
|
|
193
206
|
|
|
194
207
|
.input-container {
|
|
195
208
|
padding: 1rem 1.25rem;
|
|
196
|
-
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
197
209
|
display: flex;
|
|
198
210
|
gap: 0.5rem;
|
|
199
211
|
background: #0a0a0a;
|
|
@@ -266,6 +278,9 @@
|
|
|
266
278
|
</style>
|
|
267
279
|
</head>
|
|
268
280
|
<body>
|
|
281
|
+
<div class="top-bar">
|
|
282
|
+
<img class="logo-img" src="/logo.png" alt="Spora" />
|
|
283
|
+
</div>
|
|
269
284
|
<div class="profile-header">
|
|
270
285
|
<div class="profile-avatar" id="profileAvatar">
|
|
271
286
|
<span class="profile-avatar-letter" id="profileAvatarLetter"></span>
|