Skip to content

Commit

Permalink
Merge pull request #4337 from nextcloud/bugfix/editor-max-width-on-mo…
Browse files Browse the repository at this point in the history
…bile
  • Loading branch information
juliushaertl committed Jun 22, 2023
2 parents 9ad7585 + 09b8dc1 commit 9b000f3
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions js/editor.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/editor.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/text-editors.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/text-editors.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/text-files.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/text-files.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/text-public.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/text-public.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/text-text.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/text-text.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/text-viewer.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/text-viewer.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/Editor/ContentContainer.vue
Expand Up @@ -61,7 +61,7 @@ export default {

<style scoped lang="scss">
.editor__content {
max-width: var(--text-editor-max-width);
max-width: min(var(--text-editor-max-width), calc(100vw - 16px));
margin: auto;
position: relative;
width: 100%;
Expand Down

0 comments on commit 9b000f3

Please sign in to comment.