mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 04:27:53 +00:00
This PR adds RTL support to the web widget for improved right-to-left language compatibility, updates colors, and cleans up code. Fixes https://linear.app/chatwoot/issue/CW-4089/rtl-issues-on-widget https://github.com/chatwoot/chatwoot/issues/9791 Other PR: https://github.com/chatwoot/chatwoot/pull/11016
37 lines
820 B
SCSS
37 lines
820 B
SCSS
@import 'tailwindcss/base';
|
|
@import 'tailwindcss/components';
|
|
@import 'tailwindcss/utilities';
|
|
|
|
@import 'widget/assets/scss/reset';
|
|
@import 'shared/assets/fonts/InterDisplay/inter-display';
|
|
|
|
html,
|
|
body {
|
|
font-family: 'InterDisplay', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
height: 100%;
|
|
letter-spacing: 0.2px;
|
|
}
|
|
|
|
// Taking these utils from tailwind 3.x.x, need to remove once we upgrade
|
|
.scroll-mt-24 {
|
|
scroll-margin-top: 6rem;
|
|
}
|
|
|
|
.top-24 {
|
|
top: 6rem;
|
|
}
|
|
|
|
.heading {
|
|
.permalink {
|
|
visibility: hidden;
|
|
}
|
|
|
|
&:hover {
|
|
.permalink {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
}
|