Remove focus style on contenteditable components in chrome

This commit is contained in:
Andrew Kingston 2021-11-16 11:47:03 +00:00
parent 07e455257c
commit 96fdcb6d93
1 changed files with 5 additions and 0 deletions

View File

@ -79,4 +79,9 @@
scrollbar-color: var(--spectrum-global-color-gray-400)
var(--spectrum-alias-background-color-default);
}
/* Remove border when editing contenteditable components */
:global(*[contenteditable="true"]:focus) {
outline: none;
}
</style>