UX: Prevent long toolbars from resizing the column (#17538)
This commit is contained in:
parent
1c8d461ecc
commit
6a4a7b1d88
|
@ -15,6 +15,7 @@
|
|||
flex: 1;
|
||||
flex-direction: column;
|
||||
max-width: 100%;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.d-editor-textarea-wrapper {
|
||||
|
@ -298,6 +299,8 @@
|
|||
border-bottom: 1px solid var(--primary-low);
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
overflow-x: auto;
|
||||
flex-shrink: 0;
|
||||
|
||||
.d-editor-spacer {
|
||||
height: 1em;
|
||||
|
|
Loading…
Reference in New Issue