I'm trying to use the "Prominent w/ scroll shrink and image" v-app-bar on my nuxt site.
The code from Vuetify is:
<v-card class="overflow-hidden">
<v-app-bar
absolute
color="#fcb69f"
dark
shrink-on-scroll
src="https://picsum.photos/1920/1080?random"
scroll-target="#scrolling-techniques-2"
>
[...]
</v-app-bar>
<v-sheet
id="scrolling-techniques-2"
class="overflow-y-auto"
max-height="600"
>
<v-container style="height: 1000px;">
<nuxt />
</v-container>
</v-sheet>
</v-card>
If I understand this correctly, then the content of the page must be in the v-container, where I have my nuxt root element. That works fine so far. The v-sheet or v-container doesn't fill the whole page. If I try to set it to 100%/100vh to fill the space on small smartphone screens as well as on large PC monitors, then either the app-bar is no longer scrollable, or the whole page is no longer scrollable, or the content in the v-container goes far below the edge of the screen, even though you have scrolled all the way down.
I hope I just overlook one stupid little thing. If not, then I will probably have to use the normal "toolbar" of Vuetify, even if the app bar is so much nicer.
Best Regards,
Jakob