Skip to content

Commit 02ecfa1

Browse files
committed
flex end for messages box
1 parent 2f367e3 commit 02ecfa1

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

bash.exe.stackdump

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Stack trace:
2+
Frame Function Args
3+
000FFFF2510 00210062B0E (00210297178, 00210275E3E, 00000000000, 000FFFF1410)
4+
000FFFF2510 0021004846A (00000000000, 00000000000, 00000000000, 00000000004)
5+
000FFFF2510 002100484A2 (00210297229, 000FFFF23C8, 00000000000, 00000000000)
6+
000FFFF2510 002100D2FFE (00000000000, 00000000000, 00000000000, 00000000000)
7+
000FFFF2510 002100D3125 (000FFFF2520, 00000000000, 00000000000, 00000000000)
8+
001004F221F 002100D46E5 (000FFFF2520, 00000000000, 00000000000, 00000000000)
9+
End of stack trace

client/src/App.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,11 @@ header {
139139
font-size: 1rem;
140140
word-break: break-all;
141141
text-align: left;
142+
display: flex;
143+
flex-flow: column nowrap;
144+
justify-content: flex-end;
145+
align-items: space-between;
146+
width: 100%;
142147
padding-left: 3rem;
143148
padding-right: 3rem;
144149
font-family: var(--mono);
@@ -158,7 +163,7 @@ header {
158163
border-top: 1px solid rgba(20, 20, 20, 0.9);
159164
padding: 0.66rem 0.33rem;
160165
border-radius: 0 7% 0 0;
161-
margin: 1rem auto;
166+
margin: 1rem;
162167
box-shadow: 5px -5px 21px 1px rgba(25, 25, 25, 0.01);
163168
border-radius: 6px;
164169
word-break: keep-all;

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
},
1111
"scripts": {
1212
"start": "start-dev.sh",
13-
"build": "cd client && npm run build",
13+
"debug": "start-debug.sh",
1414
"install": "cd client && npm install && cd ../server && npm install",
15+
"build": "cd client && npm run build",
1516
"refreshDb": "node server/dev_utils/refreshDb.js"
1617
},
1718
"dependencies": {

server/server.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ const io = new Server(server, {
2323
io.on("connection", (socket) => {
2424
console.info("A socket user has connected.");
2525

26-
// On connection, join the main room `central`
27-
// socket.join("central");
28-
2926
// Listen for new message type called `notification`
3027
// emit notifications for `login` and `logout` events
3128

0 commit comments

Comments
 (0)