From 646b5d354fb92e2d7490c01a759399f63939b7d4 Mon Sep 17 00:00:00 2001 From: KKA11010 Date: Tue, 19 Dec 2023 21:13:33 +0100 Subject: [PATCH] update scanning error screen layout --- src/screens/Payment/ProcessingError.tsx | 5 +++++ src/styles/globals.ts | 3 +++ 2 files changed, 8 insertions(+) diff --git a/src/screens/Payment/ProcessingError.tsx b/src/screens/Payment/ProcessingError.tsx index 42d702da..d66b4393 100644 --- a/src/screens/Payment/ProcessingError.tsx +++ b/src/screens/Payment/ProcessingError.tsx @@ -73,6 +73,11 @@ const styles = ScaledSheet.create({ setion: { alignItems: 'center', }, + errMsg: { + color: mainColors.ERROR, + marginVertical: '15@vs', + fontSize: '18@vs', + }, hint: { fontSize: '14@vs', marginTop: '10@vs', diff --git a/src/styles/globals.ts b/src/styles/globals.ts index a833425f..aef53c12 100644 --- a/src/styles/globals.ts +++ b/src/styles/globals.ts @@ -8,6 +8,9 @@ export const globalStyles = (color?: Theme, h?: HighlightKey) => ScaledSheet.cre paddingTop: '90@vs', backgroundColor: color?.BACKGROUND }, + fullWidth: { + width: '100%', + }, txt: { fontSize: '14@vs', color: color?.TEXT