Skip to content

Commit 00a287b

Browse files
committed
msglist: Fix timestamp location
The values I had were copied from web styles, but didn't account for the padding I've put around the whole thing.
1 parent e4a3573 commit 00a287b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/message_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ class MessageWithSender extends StatelessWidget {
259259
])),
260260
Container(
261261
width: 80,
262-
padding: const EdgeInsets.only(top: 8, right: 10),
262+
padding: const EdgeInsets.only(top: 4, right: 2),
263263
alignment: Alignment.topRight,
264264
child: Text(time, style: _kMessageTimestampStyle))
265265
]));

0 commit comments

Comments
 (0)