mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 10:12:34 +00:00
Fixes https://github.com/chatwoot/chatwoot/issues/8436 Fixes https://github.com/chatwoot/chatwoot/issues/9767 Fixes https://github.com/chatwoot/chatwoot/issues/10156 Fixes https://github.com/chatwoot/chatwoot/issues/6031 Fixes https://github.com/chatwoot/chatwoot/issues/5696 Fixes https://github.com/chatwoot/chatwoot/issues/9250 Fixes https://github.com/chatwoot/chatwoot/issues/9762 --------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
49 lines
921 B
SCSS
49 lines
921 B
SCSS
// scss-lint:disable SpaceAfterPropertyColon
|
|
@import 'shared/assets/fonts/inter';
|
|
|
|
// Inter,
|
|
html,
|
|
body {
|
|
font-family:
|
|
'Inter',
|
|
-apple-system,
|
|
system-ui,
|
|
BlinkMacSystemFont,
|
|
'Segoe UI',
|
|
Roboto,
|
|
'Helvetica Neue',
|
|
Tahoma,
|
|
Arial,
|
|
sans-serif !important;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.app-wrapper {
|
|
@apply h-screen flex-grow-0 min-h-0 w-full;
|
|
|
|
.button--fixed-top {
|
|
@apply fixed ltr:right-2 rtl:left-2 top-2 flex flex-row;
|
|
}
|
|
}
|
|
|
|
.banner + .app-wrapper {
|
|
// Reduce the height of the dashboard to make room for the banner.
|
|
// And causing the top right green-action button to be pushed down when scrolling.
|
|
@apply h-[calc(100%-48px)];
|
|
|
|
.button--fixed-top {
|
|
@apply top-14;
|
|
}
|
|
|
|
.off-canvas-content {
|
|
.button--fixed-top {
|
|
@apply top-2;
|
|
}
|
|
}
|
|
}
|