chore: Follow up paddings

This commit is contained in:
Krille 2024-03-28 11:44:11 +01:00
parent 68aa2250f2
commit 1be21e6c12
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
2 changed files with 6 additions and 2 deletions

View file

@ -44,7 +44,7 @@ class ChatEventList extends StatelessWidget {
child: ListView.custom(
padding: EdgeInsets.only(
top: 16,
bottom: 4,
bottom: 12,
left: horizontalPadding,
right: horizontalPadding,
),

View file

@ -272,7 +272,11 @@ class ChatView extends StatelessWidget {
if (controller.room.canSendDefaultMessages &&
controller.room.membership == Membership.join)
Container(
margin: EdgeInsets.all(bottomSheetPadding),
margin: EdgeInsets.only(
bottom: bottomSheetPadding,
left: bottomSheetPadding,
right: bottomSheetPadding,
),
constraints: const BoxConstraints(
maxWidth: FluffyThemes.columnWidth * 2.5,
),