1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-3448 Onboarding | Fix | Fix mnemonic phrase color fixes for login flow (#2213)

This commit is contained in:
Evgenii Kozlov 2025-03-31 18:20:13 +02:00 committed by GitHub
parent cba656bc47
commit e47de0b8a0
Signed by: github
GPG key ID: B5690EEEBB952194

View file

@ -213,7 +213,8 @@ fun OnboardingMnemonicInput(
modifier = modifier,
textStyle = UXBody
.copy(
lineHeight = 34.sp
lineHeight = 34.sp,
color = colorResource(R.color.palette_system_pink)
)
,
value = text.value,
@ -234,8 +235,7 @@ fun OnboardingMnemonicInput(
},
singleLine = singleLine,
keyboardActions = keyboardActions,
keyboardOptions = keyboardOptions,
visualTransformation = MnemonicPhraseFormatter
keyboardOptions = keyboardOptions
)
}