Skip to content

Commit

Permalink
fix: denom icon misalignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralph committed Sep 4, 2024
1 parent 6a7dc4e commit 903bf9b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function DenomIconWithCurrency({
baseDenom={currency}
className="h-[24px] inline-block denom-icon"
/>
<span className="pb-5 pt-1 text-sm">{currency.toUpperCase()}</span>
<span className="pb-5 pt-3 text-sm">{currency.toUpperCase()}</span>
{tooltipText && (
<QuestionMarkTooltip
placement="bottom"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const CurrencyInput = ({
width: '15px !important',
height: '15px !important',
right: 'auto !important',
top: '-3px !important',
top: '-2px !important',
position: 'relative !important',
},
'& .MuiSvgIcon-root': {
Expand All @@ -106,6 +106,9 @@ export const CurrencyInput = ({
'& .MuiTypography-root': {
'min-width': '60px',
},
'& .MuiInputAdornment-root': {
'padding-top': '5px',
},
}}
endAdornment={
paymentOption === PAYMENT_OPTIONS.CARD ? (
Expand Down

0 comments on commit 903bf9b

Please sign in to comment.