Layout improvements

This commit is contained in:
Douglas Barone 2020-12-11 11:23:01 -04:00
parent 4695016331
commit 5605719cf6
3 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@
<transition-group
name="scale-transition"
tag="div"
class="d-flex flex-wrap mx-n2"
class="layout row row--dense"
mode="out-in"
>
<v-col

View File

@ -9,7 +9,7 @@
Você ainda não conectou um dispositivo à rede Wi-Fi. Assim que conectar,
ele aparecerá aqui.
</v-alert>
<v-expansion-panels v-if="me" flat :value="0">
<v-expansion-panels v-if="me" flat mandatory>
<WifiDevice
v-for="device in me.wifiDevices"
:key="device.id"

View File

@ -1,19 +1,19 @@
<template>
<v-container class="home" fluid>
<v-row>
<v-col cols="12" md="6">
<v-col>
<UserInfoWidget />
</v-col>
<v-col cols="12" md="6" class="flex-grow-1">
<v-col>
<DevicesWidget />
</v-col>
<v-col v-if="me && me.isSuperAdmin" cols="12" md="6">
<v-col v-if="me && me.isSuperAdmin">
<StatsWidget />
</v-col>
<v-col v-if="me && me.isTokenCreator" cols="12" md="6">
<v-col v-if="me && me.isTokenCreator">
<TokenStatsWidget />
</v-col>
</v-row>