changed all v-layout and v-flex to v-row and v-col respectively, lot's of messed up grids now :(

This commit is contained in:
2019-10-31 19:57:06 +00:00
parent b3be49ddaf
commit 482f228407
17 changed files with 117 additions and 121 deletions

View File

@@ -1,15 +1,15 @@
<template>
<v-container>
<v-layout justify-center>
<v-flex xs12>
<v-row justify-center>
<v-col xs12>
<div class="text-center">
<v-icon color="red" size="100">fa-dragon</v-icon>
<div class="headline">
{{ "404 - " + window.$gz.locale.get("ErrorAPI2010") }}
</div>
</div>
</v-flex>
</v-layout>
</v-col>
</v-row>
</v-container>
</template>