Skip to content

Commit

Permalink
changing labels, changing buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjavabraz committed Mar 25, 2024
1 parent 38cafdb commit 160826a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pegout/components/PegoutOption.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@
</span>
</div>
</v-card-item>
<v-card-item class="flex-grow-1 d-flex flex-column align-self-start justify-end">
<v-card-item class="flex-grow-1 d-flex flex-column align-left justify-end">
<v-btn
v-if="!formState.matches(['loading'])"
:disabled="!isReadyToCreate || formState.matches(['goingHome'])"
@click="$emit('send')"
rounded
color="#000"
>
Choose this option
Accept
<template v-slot:append>
<v-icon :icon="mdiSendOutline" color="#fff"></v-icon>
</template>
Expand Down Expand Up @@ -184,12 +184,12 @@ export default defineComponent({
const title = computed(() => {
if (isFlyover.value) {
return {
text: 'Faster option',
text: 'Faster',
icon: mdiClockFast,
};
}
return {
text: 'Cheaper option',
text: 'Default',
icon: mdiTagCheck,
};
});
Expand Down

0 comments on commit 160826a

Please sign in to comment.