Skip to content

Commit

Permalink
chore: Nicer batch for power level roles
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Oct 13, 2024
1 parent d14698e commit 05d5577
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions lib/pages/chat_details/participant_list_item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,22 +51,18 @@ class ParticipantListItem extends StatelessWidget {
if (permissionBatch.isNotEmpty)
Container(
padding: const EdgeInsets.symmetric(
horizontal: 4,
horizontal: 8,
vertical: 2,
),
margin: const EdgeInsets.symmetric(horizontal: 8),
decoration: BoxDecoration(
color: theme.colorScheme.primaryContainer,
borderRadius: BorderRadius.circular(8),
border: Border.all(
color: theme.colorScheme.primary,
),
borderRadius: BorderRadius.circular(16),
),
child: Text(
permissionBatch,
style: TextStyle(
fontSize: 14,
color: theme.colorScheme.primary,
fontSize: 12,
color: theme.colorScheme.onPrimaryContainer,
),
),
),
Expand Down

0 comments on commit 05d5577

Please sign in to comment.