fix(user-profile): use shell page scrolling

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-07-09 21:20:30 -04:00
parent 92f35bf73d
commit da89952aaf
+2 -4
View File
@@ -22,10 +22,8 @@ const tabs = computed(() => [
</script> </script>
<template> <template>
<PerfectScrollbar <div
class="pa-4" class="pa-4"
style="height: calc(100vh - 64px);"
:options="{ wheelPropagation: false }"
> >
<VTabs <VTabs
v-model="activeTab" v-model="activeTab"
@@ -71,5 +69,5 @@ const tabs = computed(() => [
<ProfilePreferences /> <ProfilePreferences />
</VWindowItem> </VWindowItem>
</VWindow> </VWindow>
</PerfectScrollbar> </div>
</template> </template>