Bladeren bron

update layout

CR013B2
Jason Chuang 17 uur geleden
bovenliggende
commit
1030c8abe2
3 gewijzigde bestanden met toevoegingen van 62 en 13 verwijderingen
  1. +20
    -5
      src/pages/Proof/Payment/Pay_DN.js
  2. +21
    -4
      src/pages/Proof/Payment/Pay_Office.js
  3. +21
    -4
      src/pages/Proof/Payment/Pay_Online.js

+ 20
- 5
src/pages/Proof/Payment/Pay_DN.js Bestand weergeven

@@ -48,12 +48,27 @@ const isAfter = checkIsOnlyOnlinePayment();
<Grid container justifyContent="flex-start" alignItems="center" >
<center>
<Grid item xs={12} md={8} >
<Typography variant="h4" sx={{ textAlign: "left", ml: 4, mr: 4, mt: 4, borderBottom: "1px solid black" }}>
<FormattedMessage
id={isAfter ? "proofPaymentHeader_demandNote2" : "proofPaymentHeader_demandNote"}
/>
{isAfter ? (
<Typography
variant="h4"
sx={{ textAlign: "left", ml: 8, mr: 4, mt: 4 }}
>
<FormattedMessage id="proofPaymentHeader_demandNote2" />
</Typography>

) : (
<Typography
variant="h4"
sx={{
textAlign: "left",
ml: 4,
mr: 4,
mt: 4,
borderBottom: "1px solid black"
}}
>
<FormattedMessage id="proofPaymentHeader_demandNote" />
</Typography>
)}

<Typography variant="h5" sx={{ ml: 8, mt: 4, mr: 8, textAlign: "left" }}>
<div dangerouslySetInnerHTML={{


+ 21
- 4
src/pages/Proof/Payment/Pay_Office.js Bestand weergeven

@@ -48,11 +48,28 @@ const isAfter = checkIsOnlyOnlinePayment();
<Grid container justifyContent="flex-start" alignItems="center" >
<center>
<Grid item xs={12} md={8} >
<Typography variant="h4" sx={{ textAlign: "left", ml: 4, mr: 4, mt: 4, borderBottom: "1px solid black" }}>
<FormattedMessage
id={isAfter ? "proofPaymentHeader_office2" : "proofPaymentHeader_office"}
/>
{isAfter ? (
<Typography
variant="h4"
sx={{ textAlign: "left", ml: 8, mr: 4, mt: 4 }}
>
<FormattedMessage id="proofPaymentHeader_office2" />
</Typography>
) : (
<Typography
variant="h4"
sx={{
textAlign: "left",
ml: 4,
mr: 4,
mt: 4,
borderBottom: "1px solid black"
}}
>
<FormattedMessage id="proofPaymentHeader_office" />
</Typography>
)}



<Typography variant="h5" sx={{ ml: 8, mt: 4, mr: 8, textAlign: "left" }}>


+ 21
- 4
src/pages/Proof/Payment/Pay_Online.js Bestand weergeven

@@ -154,11 +154,28 @@ const Index = () => {
<Grid container justifyContent="flex-start" alignItems="center" >
<center>
<Grid item xs={12} md={8} >
<Typography variant="h4" sx={{ textAlign: "left", ml: 4, mr: 4, mt: 4, borderBottom: "1px solid black" }}>
<FormattedMessage
id={isAfter ? "proofPaymentHeader_online2" : "proofPaymentHeader_online"}
/>
{isAfter ? (
<Typography
variant="h4"
sx={{ textAlign: "left", ml: 8, mr: 4, mt: 4 }}
>
<FormattedMessage id="proofPaymentHeader_online2" />
</Typography>
) : (
<Typography
variant="h4"
sx={{
textAlign: "left",
ml: 4,
mr: 4,
mt: 4,
borderBottom: "1px solid black"
}}
>
<FormattedMessage id="proofPaymentHeader_online" />
</Typography>
)}

<Typography variant="h5" sx={{ ml: 8, mt: 4, mr: 8, textAlign: "left" }}>
<div dangerouslySetInnerHTML={{
__html: intl.formatMessage(


Laden…
Annuleren
Opslaan