Commit 69d72414 authored by Przemyslaw Kaminski's avatar Przemyslaw Kaminski

[CodeEditor] add min-width for code-area element

This is to prevent textarea getting smaller and smaller for long json
keys.
parent 18493c7b
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
.code-editor .editor .code-area { .code-editor .editor .code-area {
flex-grow: 1; flex-grow: 1;
max-height: 200px; max-height: 200px;
min-width: 25%;
overflow: auto; overflow: auto;
} }
.code-editor .editor .code-area .code-container { .code-editor .editor .code-area .code-container {
......
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
.code-area .code-area
flex-grow: 1 flex-grow: 1
max-height: 200px max-height: 200px
min-width: 25%
overflow: auto overflow: auto
.code-container .code-container
background-color: #fafafa background-color: #fafafa
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment