Fix positionning issue of Icon in Address Selection (#2754)

This commit is contained in:
Nicolas Gotchac 2016-10-20 15:35:08 +01:00 committed by Jaco Greeff
parent 67f734cb20
commit 5c49168a66
2 changed files with 5 additions and 1 deletions

View File

@ -46,3 +46,7 @@
.paddedInput input { .paddedInput input {
padding-left: 46px !important; padding-left: 46px !important;
} }
.container {
position: relative;
}

View File

@ -57,7 +57,7 @@ export default class AddressSelect extends Component {
const { entries } = this.state; const { entries } = this.state;
return ( return (
<div> <div className={ styles.container }>
<AutoComplete <AutoComplete
className={ error ? '' : styles.paddedInput } className={ error ? '' : styles.paddedInput }
disabled={ disabled } disabled={ disabled }