aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/ScriptingBox.scss
diff options
context:
space:
mode:
authoranika-ahluwalia <anika.ahluwalia@gmail.com>2020-04-24 18:38:05 -0500
committeranika-ahluwalia <anika.ahluwalia@gmail.com>2020-04-24 18:38:05 -0500
commit13b5c5554ce9169d39e84e708e147adcb3e9eb14 (patch)
treea200a2e3bbaf2b6bb5407782d0ed7edfc882f408 /src/client/views/nodes/ScriptingBox.scss
parentfdf9c8417355fa7348057e279e6863a5ad6614df (diff)
fixed scrolling UI
Diffstat (limited to 'src/client/views/nodes/ScriptingBox.scss')
-rw-r--r--src/client/views/nodes/ScriptingBox.scss15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/client/views/nodes/ScriptingBox.scss b/src/client/views/nodes/ScriptingBox.scss
index 761a54e42..4746d62d4 100644
--- a/src/client/views/nodes/ScriptingBox.scss
+++ b/src/client/views/nodes/ScriptingBox.scss
@@ -10,14 +10,19 @@
display: flex;
flex-direction: column;
height: calc(100% - 30px);
+ table-layout: fixed;
+
+ overflow-y: hidden;
+ white-space: nowrap;
.scriptingBox-wrapper {
- height: 100%;
width: 100%;
+ height: 100%;
+ max-height: calc(100%-30px);
display: flex;
flex-direction: row;
justify-content: center;
-
+ overflow-y: hidden;
.scriptingBox-textArea {
flex: 70;
@@ -26,7 +31,7 @@
box-sizing: border-box;
resize: none;
padding: 7px;
- flex-grow: 100%;
+ overflow-y: hidden;
}
.scriptingBox-plist {
@@ -35,8 +40,8 @@
height: 100%;
box-sizing: border-box;
resize: none;
- padding: 7px;
- flex-grow: 100%;
+ padding: 2px;
+ overflow-y: scroll;
}
}