removed build-stats from nav on mobile
This commit is contained in:
@@ -1,10 +1,6 @@
|
|||||||
<script lang="ts" setup>
|
|
||||||
import BuildStats from '@/components/BuildStats.vue'
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<v-app-bar color="#191c2a" style="background: #0d1538">
|
<v-app-bar color="#191c2a" style="background: #0d1538">
|
||||||
<v-container style="max-width: 1440px">
|
<v-container class="ms-3" style="max-width: 1440px">
|
||||||
<v-row>
|
<v-row>
|
||||||
<v-app-bar-title style="align-self: center">
|
<v-app-bar-title style="align-self: center">
|
||||||
<span style="font-size: 20px">
|
<span style="font-size: 20px">
|
||||||
@@ -19,10 +15,17 @@ import BuildStats from '@/components/BuildStats.vue'
|
|||||||
</span>
|
</span>
|
||||||
</v-app-bar-title>
|
</v-app-bar-title>
|
||||||
|
|
||||||
<build-stats />
|
<build-stats v-if="!mobile" />
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-container>
|
</v-container>
|
||||||
</v-app-bar>
|
</v-app-bar>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import BuildStats from '@/components/BuildStats.vue'
|
||||||
|
import { useDisplay } from 'vuetify'
|
||||||
|
|
||||||
|
const { mobile } = useDisplay()
|
||||||
|
</script>
|
||||||
|
|
||||||
<style scoped></style>
|
<style scoped></style>
|
||||||
|
Reference in New Issue
Block a user