This commit is contained in:
Matthias Kretschmann 2024-03-30 19:53:39 +00:00
parent 894009fe69
commit f7f9346a4a
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,6 @@
display: inline-block; display: inline-block;
all: unset; all: unset;
padding: 0 0.75rem; padding: 0 0.75rem;
padding-right: 1.25rem;
} }
.selectWrapper { .selectWrapper {

View File

@ -19,6 +19,7 @@ export function InputToken({
onChange={(e) => (setToken ? setToken(e.target.value as Token) : null)} onChange={(e) => (setToken ? setToken(e.target.value as Token) : null)}
value={token} value={token}
disabled={!setToken} disabled={!setToken}
style={setToken ? { paddingRight: '1.25rem' } : {}}
> >
{isFiat ? ( {isFiat ? (
<option value="usd">USD</option> <option value="usd">USD</option>