mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-24 15:05:03 +00:00
- Add config for TailwindCSS - Enable HMR - Add a config in LocalStorage for Dark Mode Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
65 lines
997 B
SCSS
65 lines
997 B
SCSS
.bg-light {
|
|
@apply bg-slate-25 dark:bg-slate-800;
|
|
}
|
|
|
|
.flex-center {
|
|
@include flex-align(center, middle);
|
|
display: flex;
|
|
}
|
|
|
|
.bottom-space-fix {
|
|
margin-bottom: auto;
|
|
}
|
|
|
|
.full-height {
|
|
@include full-height();
|
|
}
|
|
|
|
.spinner {
|
|
@include color-spinner();
|
|
display: inline-block;
|
|
height: $space-medium;
|
|
padding: $zero $space-medium;
|
|
position: relative;
|
|
vertical-align: middle;
|
|
width: $space-medium;
|
|
|
|
&.message {
|
|
@include normal-shadow;
|
|
background: $color-white;
|
|
border-radius: $space-large;
|
|
left: 0;
|
|
margin: $space-slab auto;
|
|
padding: $space-normal;
|
|
top: 0;
|
|
|
|
&::before {
|
|
margin-left: -$space-slab;
|
|
margin-top: -$space-slab;
|
|
}
|
|
}
|
|
|
|
&.small {
|
|
height: $space-normal;
|
|
width: $space-normal;
|
|
|
|
&::before {
|
|
height: $space-normal;
|
|
margin-top: -$space-small;
|
|
width: $space-normal;
|
|
}
|
|
}
|
|
}
|
|
|
|
.justify-space-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.w-full {
|
|
width: 100%;
|
|
}
|
|
|
|
.h-full {
|
|
height: 100%;
|
|
}
|