Skip to content

Commit

Permalink
adjust columns for labels
Browse files Browse the repository at this point in the history
  • Loading branch information
michellewong793 committed Aug 23, 2024
1 parent 8ba001e commit c456a12
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion website/src/tabs/develop/Deploy.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export const Deploy = () => {
return privateKey;
};

const layout = { labelCol: { span: 3 }, wrapperCol: { span: 21 } };
const layout = { labelCol: { span: 5 }, wrapperCol: { span: 21 } };
const privateKeyString = () => (privateKey !== null ? privateKey : "");
const programString = () => (program !== null ? program : "");
const feeRecordString = () =>
Expand Down
2 changes: 1 addition & 1 deletion website/src/tabs/develop/Join.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export const Join = () => {
return privateKey;
};

const layout = { labelCol: { span: 3 }, wrapperCol: { span: 21 } };
const layout = { labelCol: { span: 5 }, wrapperCol: { span: 21 } };
const privateKeyString = () => (privateKey !== null ? privateKey : "");
const feeRecordString = () => (joinFeeRecord !== null ? joinFeeRecord : "");
const recordOneString = () => (recordOne !== null ? recordOne : "");
Expand Down
2 changes: 1 addition & 1 deletion website/src/tabs/develop/Split.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const Split = () => {
return privateKey;
};

const layout = { labelCol: { span: 3 }, wrapperCol: { span: 21 } };
const layout = { labelCol: { span: 5 }, wrapperCol: { span: 21 } };
const amountString = () => (splitAmount !== null ? splitAmount : "");
const privateKeyString = () => (privateKey !== null ? privateKey : "");
const amountRecordString = () =>
Expand Down
2 changes: 1 addition & 1 deletion website/src/tabs/develop/Transfer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export const Transfer = () => {
},
];

const layout = { labelCol: { span: 3 }, wrapperCol: { span: 21 } };
const layout = { labelCol: { span: 5}, wrapperCol: { span: 21 } };
const feeString = () => (transferFee !== null ? transferFee : "");
const amountString = () => (transferAmount !== null ? transferAmount : "");
const recipientString = () => (recipient !== null ? recipient : "");
Expand Down
2 changes: 1 addition & 1 deletion website/src/tabs/develop/execute/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { useAleoWASM } from "../../../aleo-wasm-hook";
import { useEffect, useState } from "react";
import { NewAccount } from "../../account/NewAccount.jsx";

const layout = { labelCol: { span: 4 }, wrapperCol: { span: 18 } };
const layout = { labelCol: { span: 5 }, wrapperCol: { span: 18 } };

export const Execute = () => {
const [form] = Form.useForm();
Expand Down
2 changes: 1 addition & 1 deletion website/src/tabs/record/DecryptRecord.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const DecryptRecord = () => {
setIsOwner(null);
};

const layout = { labelCol: { span: 4 }, wrapperCol: { span: 21 }, layout:"vertical"};
const layout = { labelCol: { span: 4 }, wrapperCol: { span: 21 }};

if (aleo !== null) {
const recordPlaintext = () =>
Expand Down

0 comments on commit c456a12

Please sign in to comment.