fix: q-editor border color

This commit is contained in:
puriphatt 2024-06-25 10:45:56 +00:00
parent ab1b7a0902
commit 6222db1973

View file

@ -106,7 +106,11 @@ defineProps<{
readonly ? 'disabled' : $q.dark.isActive ? 'white' : ''
"
:toolbar-toggle-color="readonly ? 'disabled' : 'primary'"
style="cursor: auto; color: var(--foreground)"
style="
cursor: auto;
color: var(--foreground);
border-color: var(--surface-3);
"
/>
</q-field>
@ -154,4 +158,8 @@ defineProps<{
:deep(.q-editor__toolbar.row.no-wrap.scroll-x) {
background-color: var(--surface-2) !important;
}
:deep(.q-editor__toolbar) {
border-color: var(--surface-3) !important;
}
</style>