diff options
author | bobzel <zzzman@gmail.com> | 2023-12-03 16:21:52 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-12-03 16:21:52 -0500 |
commit | c654a31fdb48a76fb4b0562168c920ca850a7b9e (patch) | |
tree | 76410a9da12919e35f49d3d1f3899856fb0584ce /src/client/views/nodes/ScriptingBox.scss | |
parent | 23f789ab0bc9947f1bd23816183df2b5cc89b0e6 (diff) |
cleaned up warnings and errors, working with typescript 20.10
Diffstat (limited to 'src/client/views/nodes/ScriptingBox.scss')
-rw-r--r-- | src/client/views/nodes/ScriptingBox.scss | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/client/views/nodes/ScriptingBox.scss b/src/client/views/nodes/ScriptingBox.scss index 8d76f2b1d..9789da55a 100644 --- a/src/client/views/nodes/ScriptingBox.scss +++ b/src/client/views/nodes/ScriptingBox.scss @@ -32,7 +32,7 @@ .scriptingBox-wrapper { width: 100%; height: 100%; - max-height: calc(100%-30px); + max-height: calc(100% - 30px); display: flex; flex-direction: row; overflow: auto; @@ -42,7 +42,8 @@ overflow: hidden; } - .scriptingBox-textArea, .scriptingBox-textArea-inputs { + .scriptingBox-textArea, + .scriptingBox-textArea-inputs { flex: 70; height: 100%; max-width: 95%; @@ -110,7 +111,7 @@ cursor: pointer; } - .rta__entity>* { + .rta__entity > * { padding-left: 4px; padding-right: 4px; } @@ -125,7 +126,7 @@ .scriptingBox-textArea-inputs { max-width: 100%; height: 40%; - width: 100%; + width: 100%; resize: none; } .scriptingBox-textArea-script { @@ -194,8 +195,8 @@ .scriptingBox-errorMessage { overflow: auto; - background: "red"; - background-color: "red"; + background: 'red'; + background-color: 'red'; height: 45px; } @@ -221,4 +222,4 @@ width: 25%; } } -}
\ No newline at end of file +} |