Skip to content

Commit

Permalink
Feat: First Version
Browse files Browse the repository at this point in the history
  • Loading branch information
acosta-leandro committed Jun 21, 2024
1 parent 8dedd30 commit 1369a3c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/PeopleItemLarge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
const props = defineProps({
people: Object,
});
const picture = 'femaleAvatar.png'
</script>

<template>
<div class="column col-xs-12 col-md-6 q-pa-sm">
<div class="row q-card--bordered rounded-borders text-center bg-primary text-white">
<div class="row q-card--bordered rounded-borders text-center bg-primary text-white">
<div class="col-xs-12 col-md-6 row items-center">
<img :src="`/${props.people.image}`" alt="" class="rounded-borders" style="max-width: 50%; height: auto">
<q-img :src="`/${props.people.image}`" alt="" class="rounded-borders" style="max-width: 50%; height: auto"/>
<img :src="picture" alt="" class="rounded-borders" style="max-width: 50%; height: auto">
<q-img :src="picture" alt="" class="rounded-borders" style="max-width: 50%; height: auto"/>
</div>
<div class="col-xs-12 col-md-6 q-py-md justify-evenly column">
<div>
Expand All @@ -20,11 +21,12 @@ const props = defineProps({
<q-btn v-if="props.people.page" outline label="See More" color="white" class="q-mt-md " :href="props.people.pageUrl" target="_blank"/>
</div>
</div>
</div>
</div>
</div>

</template>


<style scoped>
</style>

0 comments on commit 1369a3c

Please sign in to comment.