Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Fix BottomNavBar not below
Browse files Browse the repository at this point in the history
  • Loading branch information
suhrmann committed Nov 2, 2020
1 parent 911207d commit f4dee2f
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/views/ProductionChains.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
<template>
<v-container fluid fill-height>
<v-layout row>
<visual-production-chain></visual-production-chain>
<bottom-nav-bar></bottom-nav-bar>
</v-layout>
<v-container fluid fill-height class="pb-0">
<v-row>
<v-col>
<visual-production-chain></visual-production-chain>
</v-col>
</v-row>
<v-row class="grey darken-3">
<v-col class="pa-0 mb-3">
<bottom-nav-bar></bottom-nav-bar>
</v-col>
</v-row>
</v-container>
</template>

Expand Down

0 comments on commit f4dee2f

Please sign in to comment.