Skip to content
This repository has been archived by the owner on May 18, 2022. It is now read-only.

Commit

Permalink
Fix issues with resolution and captures
Browse files Browse the repository at this point in the history
  • Loading branch information
Mafrans committed Oct 18, 2020
1 parent ec8f2bc commit c586d40
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LibraryFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ export class LibraryFilter extends Component {
* @memberof LibraryFilter
*/
onUpdate(): void {
if (Util.isInHome()) {
if (Util.isInHome() || Util.isInStore() || Util.isInStoreDetail()) {
this.updateRenderer();
if (!this.exists() && this.renderer.querySelector('.fJrLJb') != null) {
this.reloadLibrary();
Expand Down
14 changes: 14 additions & 0 deletions src/components/styles/LibraryFilter.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
.iadg4b {
margin: 0 auto;

@media screen and (min-width: 1200px) {
max-width: 1150px;
}
@media screen and (min-width: 1600px) {
max-width: 1500px;
}
@media screen and (min-width: 1800px) {
max-width: 1650px;
}
}

.stadiaplus_libraryfilter-captures {
position: absolute;
pointer-events: none;
Expand Down

0 comments on commit c586d40

Please sign in to comment.