Skip to content

Commit

Permalink
fix(midi): Equal width for all grid items
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPietrusky committed Aug 17, 2019
1 parent 183ef97 commit 2dc8f23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/midi-grid/midi-grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ class MidiGrid extends connect(store)(LitElement) {
<style>
.container {
display: grid;
grid-template-columns: repeat(var(--width), auto);
grid-template-columns: repeat(var(--width), 1fr);
}
.item {
Expand Down

0 comments on commit 2dc8f23

Please sign in to comment.