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> <template>
<v-container fluid> <v-container fluid>
<v-row justify="center"> <v-row justify="center">
<v-col> <v-col style="max-width: 480px">
<user-select v-model="username" /> <user-select v-model="username" />
</v-col> </v-col>
</v-row> </v-row>
@ -10,15 +10,17 @@
<v-skeleton-loader class="ma-5" type="actions, article, article" /> <v-skeleton-loader class="ma-5" type="actions, article, article" />
</v-col> </v-col>
<v-col v-if="!$apollo.queries.user.loading && username"> <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> <v-card-text>
<vue-json-pretty <div v-if="user">
v-if="user" <vue-json-pretty
:data="user" :data="user"
:show-double-quotes="false" :show-double-quotes="false"
highlight-mouseover-node highlight-mouseover-node
show-line show-line
/> show-length
/>
</div>
</v-card-text> </v-card-text>
</v-col> </v-col>
</v-row> </v-row>