diff --git a/changelog/unreleased/bugfix-scrollable-account-page b/changelog/unreleased/bugfix-scrollable-account-page new file mode 100644 index 00000000000..1418b3e4265 --- /dev/null +++ b/changelog/unreleased/bugfix-scrollable-account-page @@ -0,0 +1,6 @@ +Bugfix: Scrollable account page + +Vertically scrolling the account page has been fixed and works now. + +https://github.com/owncloud/web/pull/10318 +https://github.com/owncloud/web/issues/10313 diff --git a/packages/web-runtime/src/pages/account.vue b/packages/web-runtime/src/pages/account.vue index fa78f2c700d..3a83e5b06df 100644 --- a/packages/web-runtime/src/pages/account.vue +++ b/packages/web-runtime/src/pages/account.vue @@ -479,4 +479,7 @@ export default defineComponent({ dd { margin-left: 0; } +main { + overflow-y: auto; +}