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,17 +1,22 @@
<template> <template>
<div v-if="user"> <v-container v-if="user">
<Avatar :src="user.thumbnailPhoto" size="56" left /> <v-row>
<div> <v-col cols="auto" align-self="center">
{{ user.displayName }} <Avatar :src="user.thumbnailPhoto" size="56" left />
<DistinguishedNameBreadcrumb :dn="user.dn" /> </v-col>
<RoleBadge
v-for="role in user.roles" <v-col>
:key="role" {{ user.displayName }}
class="mr-1" <DistinguishedNameBreadcrumb :dn="user.dn" />
:role="role" <RoleBadge
/> v-for="role in user.roles"
</div> :key="role"
</div> class="mr-1"
:role="role"
/>
</v-col>
</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>