fix: MetaRow fontsize

This commit is contained in:
Christian Pauly 2021-02-13 13:21:27 +01:00
parent cde8a30b65
commit a13e673782
1 changed files with 3 additions and 3 deletions

View File

@ -254,7 +254,7 @@ class _MetaRow extends StatelessWidget {
event.originServerTs.localizedTime(context), event.originServerTs.localizedTime(context),
style: TextStyle( style: TextStyle(
color: color.withAlpha(200), color: color.withAlpha(200),
fontSize: 11, fontSize: 11 * AppConfig.fontSizeFactor,
), ),
), ),
if (event.hasAggregatedEvents(timeline, RelationshipTypes.Edit)) if (event.hasAggregatedEvents(timeline, RelationshipTypes.Edit))
@ -262,7 +262,7 @@ class _MetaRow extends StatelessWidget {
padding: const EdgeInsets.only(left: 2.0), padding: const EdgeInsets.only(left: 2.0),
child: Icon( child: Icon(
Icons.edit_outlined, Icons.edit_outlined,
size: 12, size: 12 * AppConfig.fontSizeFactor,
color: color, color: color,
), ),
), ),
@ -270,7 +270,7 @@ class _MetaRow extends StatelessWidget {
if (ownMessage) if (ownMessage)
Icon( Icon(
displayEvent.statusIcon, displayEvent.statusIcon,
size: 14, size: 14 * AppConfig.fontSizeFactor,
color: color, color: color,
), ),
], ],