Skip to content

Commit

Permalink
Apps: add responsive styles for app list (#554)
Browse files Browse the repository at this point in the history
  • Loading branch information
AquiGorka committed Jan 14, 2019
1 parent 0217694 commit 8aed8fd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/apps/Apps/Apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,14 @@ const AppsGrid = styled.div`
grid-auto-flow: row;
grid-gap: 25px;
justify-items: start;
grid-template-columns: repeat(auto-fill, 224px);
grid-template-columns: 1fr;
${breakpoint(
'medium',
`
grid-template-columns: repeat(auto-fill, 224px);
`
)};
`

const Main = styled(Card).attrs({ width: '100%', height: '288px' })`
Expand Down

0 comments on commit 8aed8fd

Please sign in to comment.