Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use min and max for grid columns
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed Apr 13, 2022
commit 71a97b0fe5f2854bb5f67705cce09ab7950cf85a
2 changes: 1 addition & 1 deletion src/components/ExportSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export default {
display: grid;
gap: 40px;
grid-auto-flow: row;
grid-template-columns: repeat(auto-fit, 300px);
grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
margin-bottom: 40px;

.section__description {
Expand Down