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 1369a3c commit f44d418
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Binary file added src/assets/femaleAvatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions src/components/PeopleItemLarge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@ const props = defineProps({
people: Object,
});
const picture = 'femaleAvatar.png'
const picture2 = '/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="col-xs-12 col-md-6 row items-center">
<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"/>
<img :src="picture" alt="" class="rounded-borders" style="max-width: 25%; height: auto">
<q-img :src="picture" alt="" class="rounded-borders" style="max-width: 25%; height: auto"/>
<img :src="picture2" alt="" class="rounded-borders" style="max-width: 25%; height: auto">
<q-img :src="picture2" alt="" class="rounded-borders" style="max-width: 25%; height: auto"/>
</div>
<div class="col-xs-12 col-md-6 q-py-md justify-evenly column">
<div>
Expand Down

0 comments on commit f44d418

Please sign in to comment.