File tree Expand file tree Collapse file tree 5 files changed +124
-69
lines changed Expand file tree Collapse file tree 5 files changed +124
-69
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,18 @@ let make = () => {
3
3
let {themeObj , localeString } = Recoil .useRecoilValueFromAtom (RecoilAtoms .configAtom )
4
4
let selectedOption =
5
5
Recoil .useRecoilValueFromAtom (RecoilAtoms .selectedOptionAtom )-> PaymentModeType .paymentMode
6
- <div className = "flex flex-row w-full pr-3 gap-3" style = {color : themeObj .colorText }>
6
+ <div
7
+ className = "InfoElement flex flex-row w-full pr-3 gap-3"
8
+ style = {
9
+ color : themeObj .colorText ,
10
+ fontSize : themeObj .fontSizeLg ,
11
+ opacity : "60%" ,
12
+ fontWeight : themeObj .fontWeightLight ,
13
+ }>
7
14
<div >
8
15
<Icon name = "redirect" size = 55 shouldMirrorIcon = {localeString .localeDirection === "rtl" } />
9
16
</div >
10
- <div
11
- className = "self-center"
12
- style = {
13
- fontSize : themeObj .fontSizeLg ,
14
- opacity : "60%" ,
15
- fontWeight : themeObj .fontWeightLight ,
16
- }>
17
+ <div className = "self-center" >
17
18
{switch selectedOption {
18
19
| ACHTransfer
19
20
| BacsTransfer
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ let make = () => {
3
3
let {localeString } = Recoil .useRecoilValueFromAtom (RecoilAtoms .configAtom )
4
4
<div className = "w-full w-max-[750px] relative flex flex-row my-4 " ariaHidden = true >
5
5
<div className = "relative top-[50%] h-[1px] bg-gray-400 w-full self-center" />
6
- <div className = "relative min-w-fit px-5 text-sm text-gray-400 flex justify-center" >
6
+ <div
7
+ className = "OrPayUsingLabel relative min-w-fit px-5 text-sm text-gray-400 flex justify-center" >
7
8
{React .string (localeString .orPayUsing )}
8
9
</div >
9
10
<div className = "relative top-[50%] h-[1px] bg-gray-400 w-full self-center" />
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ let make = (~mode: PaymentModeType.payment) => {
18
18
let (termsText , showTerm ) = terms
19
19
20
20
<RenderIf condition = {showTerm == Auto || showTerm == Always }>
21
- <div className = "opacity-50 text-xs mb-2 text-left" style = {color : themeObj .colorText }>
21
+ <div
22
+ className = "TermsTextLabel opacity-50 text-xs mb-2 text-left"
23
+ style = {color : themeObj .colorText }>
22
24
{React .string (termsText )}
23
25
</div >
24
26
</RenderIf >
You can’t perform that action at this time.
0 commit comments