diff --git a/mobile/lib/ui/components/bulk_edit_widget.dart b/mobile/lib/ui/components/bulk_edit_widget.dart index e64fb071cc..da19c6ea30 100644 --- a/mobile/lib/ui/components/bulk_edit_widget.dart +++ b/mobile/lib/ui/components/bulk_edit_widget.dart @@ -754,15 +754,18 @@ class PhotoDateHeaderWidget extends StatelessWidget { child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - FittedBox( - fit: BoxFit.scaleDown, - alignment: Alignment.centerLeft, - child: Text( - enteFiles.first.displayName, - style: TextStyle( - color: colorScheme.textBase, - fontSize: 24, - fontWeight: FontWeight.bold, + Padding( + padding: const EdgeInsets.only(right: 40), + child: FittedBox( + fit: BoxFit.scaleDown, + alignment: Alignment.centerLeft, + child: Text( + enteFiles.first.displayName, + style: TextStyle( + color: colorScheme.textBase, + fontSize: 24, + fontWeight: FontWeight.bold, + ), ), ), ),