9c31d7c672
* feat: Add vue-router to widget Co-authored-by: Pranav <pranav@chatwoot.com> * Move to dynamic imports * Move to routerMixin * Fix popup button display * Remove unnecessary import * router -> route * Fix open state * Fix issues * Remove used CSS * Fix specs * Fix specs * Fix widgetColor specs * Fix mutation specs * Fixes broken lint errors * Fixes issues with widget flow Co-authored-by: Nithin <nithin@chatwoot.com> Co-authored-by: Nithin David <1277421+nithindavid@users.noreply.github.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
59 lines
941 B
SCSS
Executable file
59 lines
941 B
SCSS
Executable file
@import 'reset';
|
|
@import 'tailwindcss/base';
|
|
@import 'tailwindcss/components';
|
|
@import 'tailwindcss/utilities';
|
|
@import 'variables';
|
|
@import 'buttons';
|
|
@import 'mixins';
|
|
@import 'forms';
|
|
@import 'utilities';
|
|
@import 'shared/assets/fonts/widget_fonts';
|
|
@import '~spinkit/scss/spinners/7-three-bounce';
|
|
@import 'views/conversation';
|
|
|
|
html,
|
|
body {
|
|
font-family: $font-family;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
height: 100%;
|
|
}
|
|
|
|
.is-mobile {
|
|
display: block;
|
|
|
|
.actions {
|
|
.close-button {
|
|
display: block !important;
|
|
}
|
|
|
|
.new-window--button {
|
|
display: none !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.is-bubble-hidden {
|
|
.actions {
|
|
.close-button {
|
|
display: block !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.cursor-pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
|
|
.message-content {
|
|
ul {
|
|
list-style: disc;
|
|
padding-left: $space-slab;
|
|
}
|
|
|
|
ol {
|
|
list-style: decimal;
|
|
padding-left: $space-normal;
|
|
}
|
|
}
|