From 7912db2ce84e921a6c0676b27d825788ab3094b3 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Tue, 24 Mar 2026 11:14:16 +0100 Subject: [PATCH] Space header: change font of info to fontBodyMdRegular and icon size to 16. See #6364 --- .../android/libraries/matrix/ui/components/SpaceInfoRow.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/matrixui/src/main/kotlin/io/element/android/libraries/matrix/ui/components/SpaceInfoRow.kt b/libraries/matrixui/src/main/kotlin/io/element/android/libraries/matrix/ui/components/SpaceInfoRow.kt index f83b46a3d7..997fbbee59 100644 --- a/libraries/matrixui/src/main/kotlin/io/element/android/libraries/matrix/ui/components/SpaceInfoRow.kt +++ b/libraries/matrixui/src/main/kotlin/io/element/android/libraries/matrix/ui/components/SpaceInfoRow.kt @@ -48,7 +48,7 @@ fun SpaceInfoRow( ) { if (iconVector != null) { Icon( - modifier = Modifier.size(20.dp), + modifier = Modifier.size(16.dp), imageVector = iconVector, contentDescription = null, tint = ElementTheme.colors.iconTertiary, @@ -61,7 +61,7 @@ fun SpaceInfoRow( } Text( text = text, - style = ElementTheme.typography.fontBodyLgRegular, + style = ElementTheme.typography.fontBodyMdRegular, color = ElementTheme.colors.textSecondary, textAlign = TextAlign.Center, )