Reputation: 144
i'm using Vuetify.js.
When I scroll down, the contents covers the app-bar.
I think simply set z-index causes a lot of problems.
my app structure (pseudo)
<v-app>
<v-app-bar app absolute shrink-on-scroll prominent scroll-target"#a">
<v-sheet id="a" overflow-y-auto>
<v-content>
<keep-alive>
<router-view>
..
<v-container>
<v-col>
<v-expansion-panels>
...
..
<v-footer>
Upvotes: 0
Views: 3374
Reputation: 1
Just remove the absolute
prop from v-app-bar
component :
<v-app>
<v-app-bar app shrink-on-scroll prominent scroll-target"#a">
<v-sheet id="a" overflow-y-auto>
check this pen
Upvotes: 3