Skip to content
Snippets Groups Projects
Commit a2feb51e authored by Julian's avatar Julian
Browse files

Redesign positions of person action buttons and avatar

parent 98d1e4ec
No related branches found
No related tags found
2 merge requests!1123Resolve "Finalise Vuetify app as SPA",!1066Translations update from Weblate
Pipeline #106576 failed
......@@ -17,25 +17,40 @@
</v-row>
</template>
<template v-else-if="data && data.person">
<v-row>
<v-spacer />
<v-row class="align-center">
<v-col
cols="6"
cols="5"
sm="4"
md="3"
lg="2"
xl="1"
order="first"
max-width="220px"
>
<AvatarClickBox :id="id"/>
</v-col>
<v-spacer />
</v-row>
<v-col
order="last"
order-sm="1"
cols="12"
sm=""
>
<h1>
{{ data.person.firstName }} {{ data.person.lastName }}
</h1>
<div v-if="data.person.username" class="text-h5 grey--text text--darken-2">
{{ data.person.username }}
</div>
</v-col>
<h1 class="text-center">{{ data.person.firstName }} {{ data.person.lastName }}
<span v-if="data.person.username" class="text-h5 grey--text text--darken-2">
{{ data.person.username }}
</span>
</h1>
<v-col
order="1"
order-sm="last"
class="ms-5"
>
<PersonActions :id="data.person.id" />
</v-col>
</v-row>
<div class="text-center my-5" v-text="data.person.description"></div>
......@@ -200,11 +215,12 @@
import AdditionalImage from "./AdditionalImage.vue";
import AvatarClickBox from "./AvatarClickBox.vue";
import GroupList from "../group/GroupList.vue";
import PersonActions from "./PersonActions.vue";
import PersonList from "./PersonList.vue";
export default {
name: "PersonOverview",
components: {AdditionalImage, AvatarClickBox, GroupList, PersonList},
components: {AdditionalImage, AvatarClickBox, GroupList, PersonActions, PersonList},
props: {
id: {
type: String,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment