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

fix height #58

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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