Skip to content

Commit

Permalink
main.css error correction
Browse files Browse the repository at this point in the history
Replace min-max with legal function minmax
  • Loading branch information
keshav-c committed May 20, 2019
1 parent 257720b commit 3182ce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ button {
.guides-container {
column-gap: 20px;
display: grid;
grid-auto-rows: min-max(35em, max-content);
grid-auto-rows: minmax(10em, max-content);
grid-template-columns: repeat(4, 1fr);
margin: 20px 50px;
row-gap: 20px;
Expand Down

0 comments on commit 3182ce6

Please sign in to comment.