diff --git a/web/components/limit-bets.tsx b/web/components/limit-bets.tsx index 70e06d79..7e32db25 100644 --- a/web/components/limit-bets.tsx +++ b/web/components/limit-bets.tsx @@ -178,7 +178,7 @@ export function OrderBookButton(props: { - <Col className="justify-start gap-2 lg:flex-row lg:items-start"> + <Row className="hidden items-start justify-start gap-2 md:flex"> <LimitOrderTable limitBets={yesBets} contract={contract} @@ -189,6 +189,13 @@ export function OrderBookButton(props: { contract={contract} isYou={false} /> + </Row> + <Col className="md:hidden"> + <LimitOrderTable + limitBets={limitBets} + contract={contract} + isYou={false} + /> </Col> </Col> </Modal>