fix map drawer issues

This commit is contained in:
dhcodes
2016-09-27 09:38:40 -05:00
parent d3f8757e92
commit 42c9103e41
3 changed files with 2 additions and 4 deletions

View File

@ -62,10 +62,6 @@
} }
} }
.drawer-content {
overflow-y: auto;
}
.drawer-action-bar { .drawer-action-bar {
position: absolute; position: absolute;
top: 0; top: 0;

View File

@ -21,6 +21,7 @@
} }
.map-filter + .input-group-addon { .map-filter + .input-group-addon {
min-width: inherit;
width: 40px; width: 40px;
color: darkgreen; color: darkgreen;
background-color: #fff; background-color: #fff;

View File

@ -41,6 +41,7 @@ export class Header extends PureComponent {
handleKeyDown(e) { handleKeyDown(e) {
if (e.keyCode === ESC) { if (e.keyCode === ESC) {
e.preventDefault();
this.props.clearFilter(); this.props.clearFilter();
} }
} }