diff --git a/components/CharacterResult/index.scss b/components/CharacterResult/index.scss index 3850d5e2..b247ab9d 100644 --- a/components/CharacterResult/index.scss +++ b/components/CharacterResult/index.scss @@ -28,7 +28,7 @@ gap: $unit-half; h5 { - color: var(--text-secondary); + color: var(--text-tertiary); display: inline-block; font-size: $font-medium; font-weight: $medium; diff --git a/components/Input/index.scss b/components/Input/index.scss index 013f4a74..21fe24d8 100644 --- a/components/Input/index.scss +++ b/components/Input/index.scss @@ -7,6 +7,14 @@ display: block; padding: $unit-2x; width: 100%; + + &.Bound { + background-color: var(--input-bound-bg); + + &:hover { + background-color: var(--input-bound-bg-hover); + } + } } .InputError { diff --git a/components/Input/index.tsx b/components/Input/index.tsx index 27d21315..23beb955 100644 --- a/components/Input/index.tsx +++ b/components/Input/index.tsx @@ -16,11 +16,12 @@ const Input = React.forwardRef(function input( forwardedRef ) { const classes = classNames({ Input: true }, props.className) + const { value, ...inputProps } = props return (