Merge branch 'main' into fix-jagged-avatar-edges

This commit is contained in:
Krille-chan 2025-05-02 11:39:59 +02:00 committed by GitHub
commit 43853417d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 additions and 30 deletions

View file

@ -422,11 +422,14 @@ class Message extends StatelessWidget {
Padding(
padding:
const EdgeInsets.only(
top: 4.0,
bottom: 8.0,
left: 16.0,
right: 16.0,
),
child: Row(
mainAxisSize:
MainAxisSize.min,
spacing: 4.0,
children: [
Icon(
Icons.edit_outlined,
@ -435,11 +438,15 @@ class Message extends StatelessWidget {
size: 14,
),
Text(
' - ${displayEvent.originServerTs.localizedTimeShort(context)}',
displayEvent
.originServerTs
.localizedTimeShort(
context,
),
style: TextStyle(
color: textColor
.withAlpha(164),
fontSize: 12,
fontSize: 11,
),
),
],