chore: Follow up design

pull/956/head
Krille 2 years ago
parent 554f951a30
commit e9a9075139
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

@ -386,10 +386,14 @@ class Message extends StatelessWidget {
BorderRadius.circular(AppConfig.borderRadius / 2),
clipBehavior: Clip.antiAlias,
child: Padding(
padding: const EdgeInsets.all(4.0),
padding: const EdgeInsets.only(top: 4.0),
child: Text(
event.originServerTs.localizedTime(context),
style: TextStyle(fontSize: 13 * AppConfig.fontSizeFactor),
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 12 * AppConfig.fontSizeFactor,
color: Theme.of(context).colorScheme.secondary,
),
),
),
),

@ -31,8 +31,8 @@ class StateMessage extends StatelessWidget {
),
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 13 * AppConfig.fontSizeFactor,
color: Theme.of(context).colorScheme.onSecondaryContainer,
fontSize: 12 * AppConfig.fontSizeFactor,
color: Theme.of(context).colorScheme.secondary,
decoration:
event.redacted ? TextDecoration.lineThrough : null,
),

Loading…
Cancel
Save