2023-05-16 12:46:14 -04:00
|
|
|
@mixin chat-height($inset: 0px) {
|
2023-05-15 09:53:18 -04:00
|
|
|
// desktop and mobile
|
2024-01-30 08:18:00 -05:00
|
|
|
// -1px is for the bottom border of the chat navbar
|
2024-01-31 08:41:12 -05:00
|
|
|
|
2023-05-15 09:53:18 -04:00
|
|
|
height: calc(
|
|
|
|
var(--chat-vh, 1vh) * 100 - var(--header-offset, 0px) -
|
2024-01-31 08:41:12 -05:00
|
|
|
var(--composer-height, 0px) - var(--footer-nav-height, 0px) - 1px - $inset
|
2023-05-15 09:53:18 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
// mobile with keyboard opened
|
|
|
|
.keyboard-visible & {
|
2023-12-18 14:22:13 -05:00
|
|
|
height: calc(
|
2024-01-31 08:41:12 -05:00
|
|
|
var(--chat-vh, 1vh) * 100 - var(--header-offset, 0px) -
|
|
|
|
var(--footer-nav-height, 0px) - 1px - $inset
|
2023-12-18 14:22:13 -05:00
|
|
|
);
|
2023-05-15 09:53:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ipad
|
|
|
|
.footer-nav-ipad & {
|
|
|
|
height: calc(
|
|
|
|
var(--chat-vh, 1vh) * 100 - var(--header-offset, 0px) -
|
2024-01-31 08:41:12 -05:00
|
|
|
var(--composer-height, 0px) - var(--footer-nav-height, 0px) - 1px -
|
|
|
|
$inset
|
2023-05-15 09:53:18 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|