Skip to content

Commit

Permalink
fix: increase spacing between option components
Browse files Browse the repository at this point in the history
  • Loading branch information
dessant committed Nov 10, 2019
1 parent 65b2d82 commit cba69fe
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/options/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div class="section-desc" v-once>
{{ getText('optionSectionDescription_dataTypes') }}
</div>
<v-draggable class="option-wrap" :list="options.dataTypes">
<v-draggable class="option-wrap engines" :list="options.dataTypes">
<div class="option"
v-for="dataType in options.dataTypes" :key="dataType.id">
<v-form-field :input-id="dataType"
Expand Down Expand Up @@ -220,9 +220,13 @@ body {

.option-wrap {
display: grid;
grid-row-gap: 12px;
grid-row-gap: 24px;
padding-top: 16px;
grid-auto-columns: min-content;

&.engines {
grid-row-gap: 12px;
}
}

.option {
Expand Down

0 comments on commit cba69fe

Please sign in to comment.