mirror of https://github.com/zulip/zulip.git
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:
parent
d1732fb9da
commit
d7ee69373c
|
@ -68,6 +68,7 @@
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ztable_comp_col1 {
|
.ztable_comp_col1 {
|
||||||
|
|
Loading…
Reference in New Issue