increase padding for no permission message

This commit is contained in:
Henry Hiles 2026-05-26 13:09:32 -04:00
commit 4848840538
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -167,7 +167,10 @@ class Composer extends HookConsumerWidget {
: [ : [
Expanded( Expanded(
child: Padding( child: Padding(
padding: EdgeInsetsGeometry.all(8), padding: EdgeInsetsGeometry.symmetric(
horizontal: 8,
vertical: 12,
),
child: Text( child: Text(
"You don't have permission to send messages in this room...", "You don't have permission to send messages in this room...",
), ),