mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-24 04:59:26 +01:00
fix: MetaRow fontsize
This commit is contained in:
parent
cde8a30b65
commit
a13e673782
@ -254,7 +254,7 @@ class _MetaRow extends StatelessWidget {
|
||||
event.originServerTs.localizedTime(context),
|
||||
style: TextStyle(
|
||||
color: color.withAlpha(200),
|
||||
fontSize: 11,
|
||||
fontSize: 11 * AppConfig.fontSizeFactor,
|
||||
),
|
||||
),
|
||||
if (event.hasAggregatedEvents(timeline, RelationshipTypes.Edit))
|
||||
@ -262,7 +262,7 @@ class _MetaRow extends StatelessWidget {
|
||||
padding: const EdgeInsets.only(left: 2.0),
|
||||
child: Icon(
|
||||
Icons.edit_outlined,
|
||||
size: 12,
|
||||
size: 12 * AppConfig.fontSizeFactor,
|
||||
color: color,
|
||||
),
|
||||
),
|
||||
@ -270,7 +270,7 @@ class _MetaRow extends StatelessWidget {
|
||||
if (ownMessage)
|
||||
Icon(
|
||||
displayEvent.statusIcon,
|
||||
size: 14,
|
||||
size: 14 * AppConfig.fontSizeFactor,
|
||||
color: color,
|
||||
),
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user