Skip to content

Commit

Permalink
Merge pull request #1386 from newrelic/liz/pack-grid
Browse files Browse the repository at this point in the history
Add break point for o11y pack grid view
  • Loading branch information
LizBaker authored Jun 9, 2021
2 parents 88a8f63 + 9bd7645 commit 8dbc10c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/PackGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ const PackGrid = ({ children, className }) => {
grid-auto-rows: minmax(var(--guide-list-row-height, 150px), auto);
align-items: stretch;
width: 100%;

@media (max-width: 1450px) {
grid-template-columns: repeat(3, minmax(260px, 1fr));
}
@media (max-width: 1180px) {
grid-template-columns: 1fr;
grid-gap: 3rem;
Expand Down

0 comments on commit 8dbc10c

Please sign in to comment.