Merge pull request #1319 from davotoula/1318-profile-qr-code-screen-changes

corrected profile picture border colour
This commit is contained in:
Vitor Pamplona
2025-04-12 11:18:12 -04:00
committed by GitHub
@@ -278,14 +278,14 @@ val darkLargeProfilePictureModifier =
.width(120.dp)
.height(120.dp)
.clip(shape = CircleShape)
.border(3.dp, DarkColorPalette.background, CircleShape)
.border(3.dp, DarkColorPalette.onBackground, CircleShape)
val lightLargeProfilePictureModifier =
Modifier
.width(120.dp)
.height(120.dp)
.clip(shape = CircleShape)
.border(3.dp, LightColorPalette.background, CircleShape)
.border(3.dp, LightColorPalette.onBackground, CircleShape)
val RichTextDefaults = RichTextStyle().resolveDefaults()