fix layout

This commit is contained in:
otsmr 2025-07-18 00:47:58 +02:00
parent c89a14fc2d
commit 2a116f4601

View file

@ -243,20 +243,17 @@ class _AdditionalUserInviteState extends State<AdditionalUserInvite> {
return GestureDetector(
onTap: _copyVoucherId,
child: Card(
elevation: 5,
child: Padding(
padding: const EdgeInsets.all(16),
elevation: 3,
child: Center(
child: Text(
widget.invite.inviteCode.toUpperCase(),
style: const TextStyle(
fontSize: 18,
fontSize: 16,
fontWeight: FontWeight.bold,
),
),
),
),
),
);
}
}