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 (
<div tabIndex="0"
onKeyDown={(event) => this.move(event)}
className="poster-list"
>
<InfiniteScroll
hasMore={this.props.hasMore}

View File

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