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