mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 19:33:38 +08:00
2ed59266a9
- correctly accounts for navbar height on ipad and when keyboard is open - fixes an incorrect I18n key
25 lines
628 B
SCSS
25 lines
628 B
SCSS
@mixin chat-height($inset: 0px) {
|
|
// desktop and mobile
|
|
// 46px is the height of the navbar
|
|
height: calc(
|
|
var(--chat-vh, 1vh) * 100 - var(--header-offset, 0px) -
|
|
var(--composer-height, 0px) - var(--chat-header-offset, 0px)
|
|
);
|
|
|
|
// mobile with keyboard opened
|
|
.keyboard-visible & {
|
|
height: calc(
|
|
var(--chat-vh, 1vh) * 100 - var(--header-offset, 0px) -
|
|
var(--chat-header-offset, 0px)
|
|
);
|
|
}
|
|
|
|
// ipad
|
|
.footer-nav-ipad & {
|
|
height: calc(
|
|
var(--chat-vh, 1vh) * 100 - var(--header-offset, 0px) -
|
|
var(--chat-header-offset, 0px) - var(--composer-height, 0px)
|
|
);
|
|
}
|
|
}
|