Skip to content

Commit

Permalink
Merge pull request #51 from azkyakhan/#2401fr1
Browse files Browse the repository at this point in the history
Removed fab position adjustment and decreased value of bottom position of scan button (#2401fr1)
  • Loading branch information
dt2patel authored Jan 21, 2022
2 parents 94b80e7 + b6f8c24 commit 828159f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
7 changes: 7 additions & 0 deletions changelogs/unreleased/-2401fr1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Removed fab position adjustment and decreased value of bottom position of scan
button
ticket_id: "#2401fr1"
merge_request: 51
author: Azkya Khan
type: changed
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<ion-app>
<ion-page>
<ion-content :fullscreen="true">
<ion-content>
<ion-router-outlet />
</ion-content>
<ion-footer v-if="showFooter">
Expand Down
2 changes: 1 addition & 1 deletion src/views/Search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export default defineComponent({
<style scoped>
#scan-button {
position: fixed;
bottom: 55px;
bottom: 10px;
width: 100%;
}
</style>
10 changes: 2 additions & 8 deletions src/views/Upload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</ion-item>
<ion-button fill="clear" @click="removeItem(product.sku)">{{ $t( "Remove" ) }}</ion-button>
</ion-card>
<ion-fab id="upload-button" vertical="bottom" horizontal="end" slot="fixed">
<ion-fab vertical="bottom" horizontal="end" slot="fixed">
<ion-fab-button @click="upload()">
<ion-icon :icon="cloudUploadOutline" />
</ion-fab-button>
Expand Down Expand Up @@ -120,10 +120,4 @@ export default defineComponent({
};
},
});
</script>

<style scoped>
#upload-button {
bottom: 70px;
}
</style>
</script>

0 comments on commit 828159f

Please sign in to comment.