Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: margin, typos #659

Merged
merged 1 commit into from
May 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions wallet/src/components/BridgeComponent/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ const BridgeComponent = () => {
</div>
{/* TRANSFER MODE */}
<div className="transfer_mode">
<span className="transfer_mode_text"> Transfer Mode: </span>
<span className="transfer_mode_text">Transfer Mode:</span>
<span className="transfer_bridge_text">
{txType.charAt(0).toUpperCase() + txType.slice(1)} Bridge
</span>
Expand Down Expand Up @@ -589,7 +589,7 @@ const BridgeComponent = () => {
</SpinnerBox>

<TransferMode>
<h3>Transaction created sucessfully.</h3>
<h3>Transaction created successfully.</h3>
<ModalText>Your transfer is ready to send.</ModalText>
{/* <a className={styles.footerText}>View on etherscan</a> */}
<ContinueTransferButton
Expand Down
1 change: 1 addition & 0 deletions wallet/src/components/BridgeComponent/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,7 @@ $medium: 900px;
.transfer_mode_text {
height: 16px;
left: 571px;
margin-right: 6px;

/* Body/Extra Small */

Expand Down
2 changes: 1 addition & 1 deletion wallet/src/components/Modals/Bridge/Transfer/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const TransferModal = ({
{' '}
To minimise the risk of chain reorganisations, your transfer will wait for{' '}
</span>
<span className="text-primary"> 12 block confirmations</span> before being finalized.
<span className="text-primary"> 12 block confirmations</span> before being finalised.
</TransferModeText>
</TransferMode>
<Divider />
Expand Down
2 changes: 1 addition & 1 deletion wallet/src/components/Modals/sendModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ const SendModal = (props: SendModalProps): JSX.Element => {
<img src={successHand} alt="success hand" />
</SpinnerBox>
<div className="transferModeModal" id="Bridge_modal_success">
<h3>Transaction created sucessfully.</h3>
<h3>Transaction created successfully.</h3>
<div className="modalText">Your transfer is ready to send.</div>
<ContinueTransferButton
id="Bridge_modal_continueTransferButton"
Expand Down