Added flex

This commit is contained in:
Douglas Barone 2022-06-08 20:17:23 +00:00
parent 834f2128b0
commit 9489d9e6a9
2 changed files with 20 additions and 15 deletions

View File

@ -1,7 +1,11 @@
<template> <template>
<div v-if="user"> <v-container v-if="user">
<v-row>
<v-col cols="auto" align-self="center">
<Avatar :src="user.thumbnailPhoto" size="56" left /> <Avatar :src="user.thumbnailPhoto" size="56" left />
<div> </v-col>
<v-col>
{{ user.displayName }} {{ user.displayName }}
<DistinguishedNameBreadcrumb :dn="user.dn" /> <DistinguishedNameBreadcrumb :dn="user.dn" />
<RoleBadge <RoleBadge
@ -10,8 +14,9 @@
class="mr-1" class="mr-1"
:role="role" :role="role"
/> />
</div> </v-col>
</div> </v-row>
</v-container>
</template> </template>
<script> <script>

View File

@ -1,7 +1,7 @@
<template> <template>
<v-chip label :color="color + ' darken-4'" small dark outlined> <v-chip label :color="color + ' darken-4'" small dark outlined>
{{ text }}</v-chip {{ text }}
> </v-chip>
</template> </template>
<script> <script>