compose: Fix reduced space below compose box after expanding it.

When expanding the compose box to full screen size, the buttons below
the compose box would unexpectedly jump because of how the 100% height
interacted with padding in the default box-sizing model.

Switching to border-box fixes this.

Fixes part of #19353.
This commit is contained in:
optimm 2021-09-24 01:47:39 +05:30 committed by Tim Abbott
parent d1732fb9da
commit d7ee69373c
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@
height: 100%;
display: flex;
flex-flow: column;
box-sizing: border-box;
}
.ztable_comp_col1 {