Skip to content

Commit

Permalink
fix: Border color for CSAT component in widget (#6915)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsivin committed Apr 17, 2023
1 parent a38ecf3 commit 80dcd17
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions app/javascript/shared/components/CustomerSatisfaction.vue
Expand Up @@ -233,4 +233,10 @@ export default {
}
}
}
@media (prefers-color-scheme: dark) {
.customer-satisfaction .feedback-form input {
border-top: 1px solid var(--b-500);
}
}
</style>
3 changes: 2 additions & 1 deletion app/javascript/widget/components/template/EmailInput.vue
Expand Up @@ -75,7 +75,8 @@ export default {
},
inputColor() {
return `${this.$dm('bg-white', 'dark:bg-slate-600')}
${this.$dm('text-black-900', 'dark:text-slate-50')}`;
${this.$dm('text-black-900', 'dark:text-slate-50')}
${this.$dm('border-black-200', 'dark:border-black-500')}`;
},
inputHasError() {
return this.$v.email.$error
Expand Down

0 comments on commit 80dcd17

Please sign in to comment.