Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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