Skip to content

Commit

Permalink
Style more-results users
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Oct 1, 2023
1 parent 4f9d600 commit f3e36bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/tabs/Users.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const Users = () => {
setInitial(false);
results.forEach(user => user.highestAuthority = highestAuthority(user));
setUsers(results);
setMoreToShow(results.length === 15);
setMoreToShow(results.length === 15 && query !== "owl");
setNoResults(results.length === 0);
setSearching(false);
});
Expand Down
7 changes: 6 additions & 1 deletion client/src/tabs/Users.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@
right: 50%;
}

.mod-entities .entities-search .search-filter {
width: auto;
}

.more-results-available {
text-align: center;
margin: 0 auto;
margin: 0 25px 0 0;
font-weight: 600;
flex-grow: 2;
}

Expand Down

0 comments on commit f3e36bd

Please sign in to comment.