Skip to content

Commit

Permalink
fix: adjust position of fee slot, closes #4462
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Dec 4, 2023
1 parent 9ec8a0c commit fc2e08a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/components/fees-row/components/custom-fee-field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@ export function CustomFeeField({
justifyContent="center"
position="relative"
width="130px"
textStyle="label.02"
>
<styled.label htmlFor="fee" position="absolute" right={2} zIndex={999}>
<styled.span textStyle="label.02">{feeCurrencySymbol}</styled.span>
<styled.label htmlFor="fee" position="absolute" right={4} zIndex={999}>
{feeCurrencySymbol}
</styled.label>
<styled.input
autoComplete="off"
Expand All @@ -69,7 +70,6 @@ export function CustomFeeField({
placeholder="0"
ring="none"
textAlign="right"
textStyle="label.02"
value={field.value}
/>
</Flex>
Expand Down

0 comments on commit fc2e08a

Please sign in to comment.