Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #58 from neynarxyz/kevin/neyn-3400-fix-broken-user…
Browse files Browse the repository at this point in the history
…-display-on-the-explorer

fix height
  • Loading branch information
kevoconnell authored Oct 16, 2024
2 parents 5547b22 + ab2f8d7 commit b5d43ad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
3 changes: 1 addition & 2 deletions src/components/CastSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ const CastSearch = ({
color: 'white',
maxWidth: '100%',
minWidth: '400px',
minHeight: '400px',
maxHeight: '100%',
maxHeight: '1000px',
overflowX: 'hidden',
display: 'flex',
flexDirection: 'row',
Expand Down
8 changes: 3 additions & 5 deletions src/components/NetworkResponse.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ const NetworkResponse = ({ identifier }: any) => {
</>
)}
</div>
<div className="hidden md:block">
<div className="hidden md:block mt-3">
{hash && isFollowSyntax(hash) ? null : hash &&
!extractUsernameFromUrl(hash) ? (
<NeynarCastCard
Expand All @@ -363,9 +363,9 @@ const NetworkResponse = ({ identifier }: any) => {
color: 'white',
maxWidth: '100%',
minWidth: '400px',
minHeight: '400px',
maxHeight: '100%',
maxHeight: '1000px',
overflowX: 'hidden',
overflowY: 'auto',
display: 'flex',
flexDirection: 'row',
border: 'none',
Expand All @@ -384,8 +384,6 @@ const NetworkResponse = ({ identifier }: any) => {
color: 'white',
maxWidth: '100%',
minWidth: '400px',
minHeight: '400px',
maxHeight: '100%',
overflowX: 'hidden',
display: 'flex',
flexDirection: 'row',
Expand Down
3 changes: 1 addition & 2 deletions src/components/UserSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@ const UserSearch = ({ searchQuery }: { searchQuery: string }) => {
color: 'white',
maxWidth: '100%',
minWidth: '400px',
minHeight: '400px',
maxHeight: '100%',
maxHeight: '1000px',
overflowX: 'hidden',
display: 'flex',
flexDirection: 'row',
Expand Down

0 comments on commit b5d43ad

Please sign in to comment.