1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-22 01:47:08 +02:00

fix(mobile): spacing fixes of #8087 (#8163)

fix(mobile): spacing fix of https://github.com/immich-app/immich/pull/8087
This commit is contained in:
waclaw66 2024-03-21 18:23:06 +02:00 committed by GitHub
parent fa0a5107c2
commit 95fb9c4365
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -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(

View File

@ -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,

View File

@ -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) {