Hide ugly frame when focused

This commit is contained in:
Lucas BEE 2018-08-23 18:44:35 +08:00
parent 26b91c84b4
commit 8e96d5e7ed
2 changed files with 5 additions and 0 deletions

View File

@ -178,6 +178,7 @@ class Posters extends React.PureComponent {
return ( return (
<div tabIndex="0" <div tabIndex="0"
onKeyDown={(event) => this.move(event)} onKeyDown={(event) => this.move(event)}
className="poster-list"
> >
<InfiniteScroll <InfiniteScroll
hasMore={this.props.hasMore} hasMore={this.props.hasMore}

View File

@ -45,6 +45,10 @@ body {
} }
} }
.poster-list {
outline: none;
}
.list-filter { .list-filter {
padding-bottom: 10px; padding-bottom: 10px;
} }