[fenix] For https://github.com/mozilla-mobile/fenix/issues/27020 - Correct padding for wallpaper thumbnails

pull/600/head
sarah541 2 years ago committed by mergify[bot]
parent 9835d3735d
commit 0cd97f8f35

@ -79,8 +79,8 @@ fun WallpaperSettings(
.verticalScroll(rememberScrollState())
.background(color = FirefoxTheme.colors.layer1)
.padding(
end = 16.dp,
start = 16.dp,
end = 12.dp,
start = 12.dp,
top = 16.dp,
),
) {
@ -91,7 +91,7 @@ fun WallpaperSettings(
onLearnMoreClick = onLearnMoreClick,
)
Spacer(modifier = Modifier.height(16.dp))
Spacer(modifier = Modifier.height(12.dp))
WallpaperThumbnails(
wallpapers = wallpapers,

Loading…
Cancel
Save