diff --git a/src/components/fb/CreateFidelityBond.module.css b/src/components/fb/CreateFidelityBond.module.css index 2b4545da..2499f5d8 100644 --- a/src/components/fb/CreateFidelityBond.module.css +++ b/src/components/fb/CreateFidelityBond.module.css @@ -50,3 +50,24 @@ color: 'white'; border-radius: '50%'; } + +.form { + padding: 0.5rem; +} + +.formHeader { + display: flex; + justify-content: space-between; + align-items: center; + padding: 0.5rem 1rem 0 1rem; +} + +.formHeader .title { + width: 100%; + font-size: 1.2rem; + color: var(--bs-body-color); +} + +.formHeader .svg { + color: var(--bs-body-color); +} diff --git a/src/components/fb/CreateFidelityBond.tsx b/src/components/fb/CreateFidelityBond.tsx index 8d6f3353..6de23deb 100644 --- a/src/components/fb/CreateFidelityBond.tsx +++ b/src/components/fb/CreateFidelityBond.tsx @@ -673,8 +673,12 @@ const CreateFidelityBond = ({ otherFidelityBondExists, wallet, walletInfo, onDon )} - -
+ +
+ +
{t('earn.fidelity_bond.create_fidelity_bond.title')}
+ +

{stepComponent(step)}
@@ -698,7 +702,7 @@ const CreateFidelityBond = ({ otherFidelityBondExists, wallet, walletInfo, onDon )}
- +
) } diff --git a/src/i18n/locales/en/translation.json b/src/i18n/locales/en/translation.json index fe6ce379..273d0a00 100644 --- a/src/i18n/locales/en/translation.json +++ b/src/i18n/locales/en/translation.json @@ -494,6 +494,7 @@ "label_selected_utxos": "UTXOs that will be time-locked:" }, "create_fidelity_bond": { + "title": "Create Fidelity Bond", "success_text": "Fidelity bond created!", "text_primary_button": "Done", "text_primary_button_unfreeze": "Unfreeze UTXOs",