Fix width

This commit is contained in:
Douglas Barone 2020-12-10 10:42:43 -04:00
parent 2f58fb918e
commit dd5cb97990

View File

@ -1,7 +1,7 @@
<template>
<v-container fluid>
<v-row justify="center">
<v-col>
<v-col style="max-width: 480px">
<user-select v-model="username" />
</v-col>
</v-row>
@ -10,15 +10,17 @@
<v-skeleton-loader class="ma-5" type="actions, article, article" />
</v-col>
<v-col v-if="!$apollo.queries.user.loading && username">
<v-card-title> User AD info </v-card-title>
<v-card-title> Informações do Active Directory </v-card-title>
<v-card-text>
<vue-json-pretty
v-if="user"
:data="user"
:show-double-quotes="false"
highlight-mouseover-node
show-line
/>
<div v-if="user">
<vue-json-pretty
:data="user"
:show-double-quotes="false"
highlight-mouseover-node
show-line
show-length
/>
</div>
</v-card-text>
</v-col>
</v-row>