Skip to content

Commit

Permalink
fix(bridge-ui): wrong spacing taikoxyz#13339
Browse files Browse the repository at this point in the history
  • Loading branch information
deepaksing committed Apr 7, 2023
1 parent 6f15f8a commit 48ab99e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/bridge-ui/src/components/form/BridgeForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@
.eq(BigNumber.from(0)); // balance == 0?
</script>

<div class="form-control my-4 md:my-8">
<div class="form-control my-10 md:my-8">
<label class="label" for="amount">
<span class="label-text">{$_('bridgeForm.fieldLabel')}</span>

Expand Down
2 changes: 1 addition & 1 deletion packages/bridge-ui/src/components/form/Memo.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
$: checkSizeLimit(memo);
</script>

<div class="flex flex-row justify-between mb-2">
<div class="flex flex-row justify-between mb-4">
<ButtonWithTooltip onClick={() => (tooltipOpen = true)}>
<span slot="buttonText">Memo</span>
</ButtonWithTooltip>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
}
</script>

<div class="my-10">
<div class="my-10 md:my-8">
<div class="flex flex-row justify-between">
<ButtonWithTooltip onClick={() => (showProcessingFeeTooltip = true)}>
<span slot="buttonText">{$_('bridgeForm.processingFeeLabel')}</span>
Expand Down
2 changes: 1 addition & 1 deletion packages/bridge-ui/src/components/form/To.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
let tooltipOpen: boolean = false;
</script>

<div class="flex flex-row justify-between mb-2 mt-2">
<div class="flex flex-row justify-between">
<ButtonWithTooltip onClick={() => (tooltipOpen = true)}>
<span slot="buttonText">Custom Recipient</span>
</ButtonWithTooltip>
Expand Down

0 comments on commit 48ab99e

Please sign in to comment.