Skip to content

Commit

Permalink
change input field style (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
doerfli committed May 31, 2024
1 parent c59118d commit 600032e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/stake/stake_bundle_form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export default function StakeBundleForm(props: StakeBundleFormProps) {
fullWidth
disabled={props.formDisabled}
autoFocus
variant={INPUT_VARIANT}
variant="outlined"
{...field}
onBlur={() => { field.onBlur(); calculateSupportedAmount(); }}
InputProps={{
Expand All @@ -208,7 +208,7 @@ export default function StakeBundleForm(props: StakeBundleFormProps) {
label={t('supportedAmount')}
fullWidth
disabled={true}
variant="outlined"
variant="filled"
{...field}
InputProps={{
startAdornment: <InputAdornment position="start">{props.bundle.supportingToken}</InputAdornment>,
Expand All @@ -227,7 +227,7 @@ export default function StakeBundleForm(props: StakeBundleFormProps) {
label={t('reward_rate')}
fullWidth
disabled={true}
variant="outlined"
variant="filled"
{...field}
InputProps={{
endAdornment: <InputAdornment position="end">%</InputAdornment>,
Expand All @@ -246,7 +246,7 @@ export default function StakeBundleForm(props: StakeBundleFormProps) {
label={t('expected_reward')}
fullWidth
disabled={true}
variant="outlined"
variant="filled"
{...field}
InputProps={{
startAdornment: <InputAdornment position="start">{props.stakingApi.currency()}</InputAdornment>,
Expand Down

0 comments on commit 600032e

Please sign in to comment.