Skip to content

Commit

Permalink
fix height
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKevinOConnell committed Oct 16, 2024
1 parent 5547b22 commit ab2f8d7
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 ab2f8d7

Please sign in to comment.