@@ -400,14 +400,14 @@ const Index = () => {
<Grid container justifyContent="flex-start" alignItems="center" width="100%">
<center style={{ width: '100%', display: 'block' }}>
<Grid item xs={12} md={12} >
<Box sx={{ width: { xs: '90%', md: '5 0%' }, mx: 'auto', mt: 4, textAlign: 'left' }}>
<Box sx={{ width: { xs: '90%', md: '4 0%' }, mx: 'auto', mt: 4, textAlign: 'left' }}>
{!isError &&
<Typography component="div" variant="body1" color="error" sx={{ fontSize: '20px' }}>
<Typography component="div" variant="body1" color="error" sx={{ fontSize: '20px', fontWeight: 700, textAlign: 'center' }}>
<FormattedMessage id="payAlert"/>
</Typography>
}
{isError &&
<Typography component="div" variant="body1" color="error" sx={{ fontSize: '20px' }}>
<Typography component="div" variant="body1" color="error" sx={{ fontSize: '20px', fontWeight: 700, textAlign: 'justify' }}>
<FormattedMessage id="fpsPaymentErrorMsg1"/>
<Box
component="ul"
@@ -419,10 +419,11 @@ const Index = () => {
boxSizing: 'border-box',
listStylePosition: 'outside',
paddingLeft: '1.5em',
textAlign: 'justify',
}}
>
<li><FormattedMessage id="fpsPaymentErrorMsg2"/></li>
<li><FormattedMessage id="fpsPaymentErrorMsg3"/></li>
<li style={{fontWeight:'bold', textAlign: 'justify'}} ><FormattedMessage id="fpsPaymentErrorMsg2"/></li>
<li style={{fontWeight:'bold', textAlign: 'justify'}} ><FormattedMessage id="fpsPaymentErrorMsg3"/></li>
</Box>
</Typography>
}