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

Commit

Permalink
remove border
Browse files Browse the repository at this point in the history
  • Loading branch information
kevoconnell committed Sep 3, 2024
1 parent 7139daa commit d0e332d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/CastSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,7 @@ const CastSearch = ({ query }: { query: string }) => {
flexDirection: 'row',
alignItems: 'center',
background: '#333333',
border: 'none',
}}
fid={user.fid}
/>
Expand Down Expand Up @@ -443,7 +444,7 @@ const CastSearch = ({ query }: { query: string }) => {
<div
key={`${cast.hash}-${index}`}
ref={index === casts.length - 1 ? lastCastRef : null}
className=" border items-center flex flex-col border-gray-200 rounded-none bg-[#333333] p-4"
className=" border items-center flex flex-col border-gray-200 rounded-none bg-[#333333]"
>
<NeynarCastCard
customStyles={{
Expand All @@ -452,6 +453,7 @@ const CastSearch = ({ query }: { query: string }) => {
overflowX: 'hidden',
display: 'flex',
flexDirection: 'row',
border: 'none',
alignItems: 'center',
background: '#333333',
}}
Expand Down

0 comments on commit d0e332d

Please sign in to comment.