1
0
Fork 0
mirror of synced 2024-10-01 17:47:46 +13:00

Remove focus style on contenteditable components in chrome

This commit is contained in:
Andrew Kingston 2021-11-16 11:47:03 +00:00
parent 1cfb0f467d
commit c43927e863

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>