Skip to content

Commit

Permalink
fix: CoinCell uses different styles
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitardanailov committed Jun 9, 2024
1 parent 410e00c commit 9dd85ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/website/src/styled-components/Coingecko/Table/Cell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ export const CoinCell = styled(Cell)`
display: flex;
flex-direction: row;
align-items: center;
min-width: 120px;
width: ${props => props.width};
@media (max-width: 1024px) {
min-width: 50px;
width: ${props => (props.mobile?.width ? props.mobile?.width : '60px')};
}
`

Expand Down

0 comments on commit 9dd85ed

Please sign in to comment.