Skip to content

Commit

Permalink
fix: Ensure right-column has a min width of 0
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Jun 15, 2020
1 parent dd55b55 commit a50ddf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Layout.module.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.layout {
min-height: 100vh;
display: grid;
grid-template-columns: auto 1fr;
grid-template-columns: auto minmax(0, 1fr);
max-width: 1200px;
margin: 0 auto;
}

0 comments on commit a50ddf2

Please sign in to comment.