Fix right click in expanded composer
Co-authored-by: Jamie Kyle <113370520+jamiebuilds-signal@users.noreply.github.com>
This commit is contained in:
parent
cfd60c30ee
commit
78cacf7ccc
1 changed files with 8 additions and 3 deletions
|
@ -98,11 +98,16 @@
|
|||
}
|
||||
|
||||
&--large {
|
||||
max-height: calc(212px - 2 * $border-size);
|
||||
min-height: calc(212px - 2 * $border-size);
|
||||
$largeHeight: calc(212px - 2 * $border-size);
|
||||
$largeHeightContentBox: calc($largeHeight - 2 * $padding-top);
|
||||
|
||||
// Explicit height needed to allow `height: 100%` on children
|
||||
height: $largeHeight;
|
||||
max-height: $largeHeight;
|
||||
min-height: $largeHeight;
|
||||
|
||||
.DraftEditor-root {
|
||||
height: calc(212px - 2 * $padding-top - 2 * $border-size);
|
||||
height: $largeHeightContentBox;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue