fix: [IMAGES] design (#216)

Co-authored-by: Florent Champigny <florent@bere.al>
This commit is contained in:
Florent CHAMPIGNY 2025-09-10 14:04:10 +02:00 committed by GitHub
parent 39bacbcc6e
commit 51231e50b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -61,17 +61,18 @@ fun ImageItemView(
Column(
modifier = Modifier
.fillMaxWidth()
.padding(all = 12.dp),
.background(FloconTheme.colorPalette.surface)
.padding(horizontal = 12.dp, vertical = 8.dp),
) {
Text(
text = model.downloadedAt,
style = FloconTheme.typography.bodySmall,
color = FloconTheme.colorPalette.onPrimary,
fontSize = 14.sp
)
Text(
text = model.url,
style = FloconTheme.typography.bodySmall,
color = FloconTheme.colorPalette.onPrimary.copy(alpha = .5f),
fontSize = 10.sp
)
}
}