Skip to content

Commit

Permalink
fix: 🐛 fix table created with reversed row and col (#86)
Browse files Browse the repository at this point in the history
close #86
  • Loading branch information
Leecason committed May 27, 2020
1 parent 482311a commit 7261d48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<div
v-for="row in tableGridSize.row"
:key="'r' + row"
class="table-grid-size-editor__row"
>
<div
v-for="col in tableGridSize.col"
Expand Down
5 changes: 5 additions & 0 deletions src/styles/command_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,15 @@

&__body {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-between;
}

&__row {
display: flex;
}

&__cell {
background-color: $white-color;
padding: 5px;
Expand Down

0 comments on commit 7261d48

Please sign in to comment.