Skip to content

Commit

Permalink
fix: responsiveness for tiles on smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
abrunner committed Nov 16, 2021
1 parent 7cdc4d1 commit e7bed53
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/experiments/super_tiles/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@ const SuperTilesExperiment = ({ isMobile }) => {
return (
<div
css={css`
display: flex;
flex-direction: row;
justify-content: space-between;
display: grid;
margin-bottom: 16px;
gap: 16px;
grid-template-columns: repeat(2, 1fr);
@media (max-width: 1180px) {
grid-template-columns: repeat(1, 1fr);
}
`}
>
<GuidedInstallTile />
Expand Down

0 comments on commit e7bed53

Please sign in to comment.