mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 02:02:27 +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>
39 lines
666 B
SCSS
39 lines
666 B
SCSS
@import 'dashboard/assets/scss/variables';
|
|
|
|
.formulate-input {
|
|
.formulate-input-errors {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.formulate-input-error {
|
|
color: var(--r-400);
|
|
display: block;
|
|
font-size: var(--font-size-small);
|
|
font-weight: $font-weight-normal;
|
|
margin-bottom: $space-one;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.integration-hooks {
|
|
.formulate-input[data-type='checkbox'] {
|
|
.formulate-input-wrapper {
|
|
@apply flex;
|
|
|
|
.formulate-input-element {
|
|
@apply pr-2;
|
|
|
|
input {
|
|
@apply mb-0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.formulate-input-element-decorator {
|
|
@apply hidden;
|
|
}
|
|
}
|
|
}
|