fix: removed space under grid (#4352)

Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io>
This commit is contained in:
ilyes-ced 2024-01-14 14:56:11 +00:00 committed by GitHub
parent cd28dee7bd
commit d200c409d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ class GridRowBottomBar extends StatelessWidget {
return Container(
padding: GridSize.footerContentInsets,
height: GridSize.footerHeight,
margin: const EdgeInsets.only(bottom: 200, top: 8),
margin: const EdgeInsets.only(bottom: 8, top: 8),
child: const GridAddRowButton(),
);
}