File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
components/ui/BeastMarketBeastList Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff 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
93100const 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 ) ? (
You can’t perform that action at this time.
0 commit comments