Skip to content

Commit cae81df

Browse files
Apply suggestions from code review
Co-authored-by: Mario Buikhuizen <mbuikhuizen@gmail.com>
1 parent 4a79794 commit cae81df

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed
Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
<template>
2-
<v-row>
3-
<v-col cols=6>
4-
<glue-float-field label="xmin" :value.sync="glue_state.x_min" />
5-
</v-col cols=6>
6-
<v-col>
7-
<glue-float-field label="xmax" :value.sync="glue_state.x_max" />
2+
<div>
3+
<v-row no-gutters>
4+
<v-col cols="6">
5+
<glue-float-field class="mr-1" label="xmin" :value.sync="glue_state.x_min" />
6+
</v-col>
7+
<v-col cols="6">
8+
<glue-float-field class="ml-1" label="xmax" :value.sync="glue_state.x_max" />
89
</v-col>
910
</v-row>
10-
<v-row>
11-
<v-col cols=6>
12-
<glue-float-field label="ymin" :value.sync="glue_state.y_min" />
11+
<v-row no-gutters>
12+
<v-col cols="6">
13+
<glue-float-field class="mr-1" label="ymin" :value.sync="glue_state.y_min" />
1314
</v-col>
14-
<v-col cols=6>
15-
<glue-float-field label="ymax" :value.sync="glue_state.y_max" />
15+
<v-col cols="6">
16+
<glue-float-field class="ml-1" label="ymax" :value.sync="glue_state.y_max" />
1617
</v-col>
1718
</v-row>
19+
</div>
1820
</template>

0 commit comments

Comments
 (0)