Skip to content

Commit

Permalink
switch to one column on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
danking committed Dec 9, 2024
1 parent ed8ae8f commit 6c6024f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion dev/bench/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,18 @@ footer {
/* align-items: center; */
/* flex-wrap: wrap; */
margin-left: auto;
grid-template-columns: repeat(2, 40% [col-start]);
margin-right: auto;
grid-template-columns: 1fr 1fr;
grid-auto-rows: 400px;
width: 80%;
}

@media (max-width: 600px) {
.benchmark-graphs {
grid-template-columns: 100%;
}
}

/* .benchmark-chart { */
/* max-width: 550px; */
/* max-height: 600px; */
Expand Down

0 comments on commit 6c6024f

Please sign in to comment.