Skip to content

Commit a0dc483

Browse files
Update BeastMarketBeastList.tsx
1 parent 758d492 commit a0dc483

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

components/ui/BeastMarketBeastList/BeastMarketBeastList.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,13 @@ const QuickBuyButton = styled.button`
8888
/* &:hover {
8989
box-shadow: 2px 2px 5px 1px black;
9090
} not needed dense*/
91+
92+
@media (max-width: 420px) {
93+
display: none;
94+
${BeastLi}:hover & {
95+
display: none;
96+
}
97+
}
9198
`
9299

93100
const StarLevel = styled.div`
@@ -624,6 +631,7 @@ const BeastMarketBeastList: FC<Props> = ({
624631
</div>
625632
{userBeasts?.map((beast: any) => beast.id).includes(beast.id) ? (
626633
<>
634+
{/* Owned */}
627635
{beastsForSale
628636
?.map((beast: any) => beast.id)
629637
.includes(beast.id) ? (
@@ -648,6 +656,7 @@ const BeastMarketBeastList: FC<Props> = ({
648656
</>
649657
) : (
650658
<>
659+
{/* Not owned */}
651660
{beastsForSale
652661
?.map((beast: any) => beast.id)
653662
.includes(beast.id) ? (

0 commit comments

Comments
 (0)