Skip to content

Commit

Permalink
fix(mobile): spacing fix of immich-app#8087
Browse files Browse the repository at this point in the history
  • Loading branch information
waclaw66 committed Mar 21, 2024
1 parent 2a9f2b4 commit 2d7cdf4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class ExifMap extends StatelessWidget {
}

return Padding(
padding: const EdgeInsets.symmetric(vertical: 8.0),
padding: const EdgeInsets.symmetric(vertical: 16.0),
child: LayoutBuilder(
builder: (context, constraints) {
return MapThumbnail(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ExifPeople extends ConsumerWidget {
.watch(assetPeopleNotifierProvider(asset))
.value
?.where((p) => !p.isHidden);
final double imageSize = math.min(context.width / 3, 120);
final double imageSize = math.min(context.width / 3, 150);

showPersonNameEditModel(
String personId,
Expand Down
2 changes: 1 addition & 1 deletion mobile/lib/modules/search/ui/curated_people_row.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class CuratedPeopleRow extends StatelessWidget {

@override
Widget build(BuildContext context) {
const imageSize = 70.0;
const imageSize = 60.0;

// Guard empty [content]
if (content.isEmpty) {
Expand Down

0 comments on commit 2d7cdf4

Please sign in to comment.