diff --git a/changelog/unreleased/bugfix-sizeable-html-container b/changelog/unreleased/bugfix-sizeable-html-container new file mode 100644 index 00000000000..3aa0ddc9d57 --- /dev/null +++ b/changelog/unreleased/bugfix-sizeable-html-container @@ -0,0 +1,6 @@ +Bugfix: Resizeable html container + +We removed a critical accessibility offense by removing +the hardcoded maximum-scale and allowing for user-scalable viewsizes. + +https://github.com/owncloud/web/pull/5052 diff --git a/rollup.config.js b/rollup.config.js index 01083a7d706..86c6e9875c8 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -85,7 +85,7 @@ const plugins = [ }, { name: 'viewport', - content: 'initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no' + content: 'initial-scale=1.0, minimum-scale=1.0' }, { name: 'theme-color',