remove border if canvas is in focus

This commit is contained in:
Val Erastov 2022-08-19 19:16:38 -07:00
parent a26240d632
commit b4a9fec1e4

View file

@ -23,6 +23,7 @@ html, body {
font-size: 16px; font-size: 16px;
padding: 8px 0 0 10px; padding: 8px 0 0 10px;
cursor: alias; cursor: alias;
white-space: nowrap;
} }
.logo sup { .logo sup {
@ -298,6 +299,12 @@ html, body {
pointer-events: none; pointer-events: none;
} }
#viewer-container{
canvas:focus-visible, canvas:focus, canvas:focus-within {
outline-width: 0;
}
}
#top-toolbar:empty { #top-toolbar:empty {
height: 40px; height: 40px;
} }