Skip to content

Commit

Permalink
Updated add box styling
Browse files Browse the repository at this point in the history
Made add box button styles more consistent with chip styles
  • Loading branch information
dt2patel authored Jul 11, 2023
1 parent a277399 commit b5c9f07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/InProgress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
</div>
<!-- TODO: implement functionality to change the type of box -->
<div class="box-type desktop-only" v-else-if="order.shipmentPackages">
<ion-button @click="addShipmentBox(order)" fill="outline"><ion-icon :icon="addOutline" />{{ $t("Add Box") }}</ion-button>
<ion-button @click="addShipmentBox(order)" fill="outline" shape="round" size="small"><ion-icon :icon="addOutline" />{{ $t("Add Box") }}</ion-button>
<ion-chip v-for="shipmentPackage in order.shipmentPackages" :key="shipmentPackage.shipmentId">{{ getShipmentPackageNameAndType(shipmentPackage, order) }}</ion-chip>
</div>

Expand Down

0 comments on commit b5c9f07

Please sign in to comment.