fix: height of token selector overflow div
This commit is contained in:
@@ -35,7 +35,7 @@ export class ERC20TokenSelector extends React.Component<ERC20TokenSelectorProps>
|
||||
value={this.state.searchQuery}
|
||||
onChange={this._handleSearchInputChange}
|
||||
/>
|
||||
<Container overflow="scroll" height="275px" marginTop="10px">
|
||||
<Container overflow="scroll" height="400px" marginTop="10px">
|
||||
{_.map(tokens, token => {
|
||||
if (!this._isTokenQueryMatch(token)) {
|
||||
return null;
|
||||
|
||||
@@ -28,12 +28,12 @@ export interface DropdownState {
|
||||
export class Dropdown extends React.Component<DropdownProps, DropdownState> {
|
||||
public static defaultProps = {
|
||||
items: [
|
||||
// {
|
||||
// text: 'Item 1',
|
||||
// },
|
||||
// {
|
||||
// text: 'Item 2',
|
||||
// },
|
||||
{
|
||||
text: 'Item 1',
|
||||
},
|
||||
{
|
||||
text: 'Item 2',
|
||||
},
|
||||
],
|
||||
};
|
||||
public state: DropdownState = {
|
||||
|
||||
Reference in New Issue
Block a user