Skip to content

Commit

Permalink
Adjust post/search alert border to fill width
Browse files Browse the repository at this point in the history
  • Loading branch information
pdelfan committed Mar 29, 2024
1 parent 7811583 commit ae631aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/containers/search/PostSearchContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function PostSearchContainer(props: Props) {

{isFetching && !isFetchingNextPage && <FeedPostSkeleton />}
{isEmpty && !hasNextPage && (
<div className="border-skin-base mx-3 border-t md:mx-0">
<div className="border-skin-base border-t">
<FeedAlert variant="empty" message="No posts found" />
</div>
)}
Expand Down
2 changes: 1 addition & 1 deletion src/containers/search/UserSearchContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default function UserSearchContainer(props: Props) {
</InfiniteScroll>

{isEmpty && (
<div className="border-skin-base mx-3 border-t md:mx-0">
<div className="border-skin-base border-t">
<FeedAlert variant="empty" message="No users found" />
</div>
)}
Expand Down

0 comments on commit ae631aa

Please sign in to comment.