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>
|
||||
<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-app-bar-title style="align-self: center">
|
||||
<span style="font-size: 20px">
|
||||
@@ -19,10 +15,17 @@ import BuildStats from '@/components/BuildStats.vue'
|
||||
</span>
|
||||
</v-app-bar-title>
|
||||
|
||||
<build-stats />
|
||||
<build-stats v-if="!mobile" />
|
||||
</v-row>
|
||||
</v-container>
|
||||
</v-app-bar>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import BuildStats from '@/components/BuildStats.vue'
|
||||
import { useDisplay } from 'vuetify'
|
||||
|
||||
const { mobile } = useDisplay()
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
||||
|
Reference in New Issue
Block a user