fixed positioning of buttons

This commit is contained in:
BurnLP2013 2024-07-11 13:51:55 +02:00
parent 05b0155114
commit c46cdebe0f

View file

@ -84,30 +84,30 @@
no-gutters no-gutters
> >
<v-col <v-col
class="flex-grow-1 flex-shrink-0 overflow-x-auto border-e-md" class="flex-grow-1 align-self-end overflow-x-auto border-e-md"
cols="10" cols="10"
> >
{{ props.notes }} {{ props.notes }}
</v-col> </v-col>
<v-col <v-col
class="flex-grow-0 flex-shrink-1 overflow-x-auto" class=""
cols="2" cols="2"
align="end" align="end"
> >
<!-- --> <!-- -->
<!-- EDIT SECTION --> <!-- EDIT SECTION -->
<!-- --> <!-- -->
<v-btn class="mr-3" flat size="small"> <v-btn class="mr-3" flat size="small">
<Pencil /> <Pencil />
</v-btn> </v-btn>
<!-- --> <!-- -->
<!-- DELETE BTN --> <!-- DELETE BTN -->
<!-- --> <!-- -->
<v-btn class="mr-3" flat size="small" color="red" variant="text"> <v-btn class="mr-3" flat size="small" color="red" variant="text">
<Trash /> <Trash />
</v-btn> </v-btn>
</v-col> </v-col>
</v-row> </v-row>