mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
remove border if canvas is in focus
This commit is contained in:
parent
a26240d632
commit
b4a9fec1e4
1 changed files with 7 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue