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:
authorJulius Härtl <jus@bitgrid.net>2019-06-25 11:53:11 +0300
committerJulius Härtl <jus@bitgrid.net>2019-06-25 11:53:11 +0300
commit916778a6d9158979d9d8c5701aaa932097887691 (patch)
treef85f462cd230ffa505f3b68d66200f320d13b422
parent072ad2fc88ab09c1bed1552d23c5c0965491ccd5 (diff)
Fix scolling behavior (fixes #88)v1.0.0-alpha2
Signed-off-by: Julius Härtl <jus@bitgrid.net>
-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;
}
}
}