Skip to content

Commit

Permalink
small UI updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jenbeckett committed Aug 6, 2024
1 parent 34e5016 commit 8841aa0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
<div v-for="(model, index) in models" :key="model.supplementaryApplicationId ? model.supplementaryApplicationId : model.id" @input="update(model)">
<v-card class="my-10" :class="{ greyTop: readOnly(model), 'basic-card': !readOnly(model) }" :disabled="readOnly(model)">
<v-row class="pa-7 pt-10">
<v-col cols="1">
<v-col cols="10" md="1">
<AppLabel>Vehicle</AppLabel>
</v-col>
<v-col v-if="!readOnly(model)">
<v-col v-if="!readOnly(model)" cols="1">
<v-icon large class="mt-n2" @click="deleteModel(model, index)">mdi-delete-forever</v-icon>
</v-col>
</v-row>
Expand Down
5 changes: 5 additions & 0 deletions frontend/src/components/ui/AppDocumentUpload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,4 +170,9 @@ export default {
.addFileButton {
font-size: 16px;
}
:deep(.v-field__input) {
overflow: hidden;
text-overflow: ellipsis;
}
</style>

0 comments on commit 8841aa0

Please sign in to comment.