Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/EditorWrapper.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/EditorWrapper.vue b/src/components/EditorWrapper.vue
index 7e104d154..600347546 100644
--- a/src/components/EditorWrapper.vue
+++ b/src/components/EditorWrapper.vue
@@ -384,7 +384,7 @@ export default {
border-radius: var(--border-radius);
padding: 0;
position: relative;
- overflow-y: scroll;
+ overflow-y: auto;
overflow-x: hidden;
width: 100%;
}
@@ -449,6 +449,7 @@ export default {
}
#editor-container {
top: 0;
+ width: 100%;
#editor::v-deep .menubar {
// sticky position is not working as body is our scroll container
@@ -459,6 +460,7 @@ export default {
#editor {
padding-top: 50px;
+ overflow: auto;
}
}
}