add import guide function to editor/viewer

This commit is contained in:
Michi 2024-11-10 21:21:12 +01:00
parent 0d95e29afb
commit 4845a4a3a6
3 changed files with 106 additions and 35 deletions

View file

@ -32,6 +32,11 @@ body{
padding: 20px 0;
}
/* Mode selection */
body.viewer .editor {
display: none;
}
/* Navigation & Tool List */
.nav{
position: fixed;
@ -59,6 +64,7 @@ body{
box-sizing: border-box;
background: var(--white);
border-radius: 20px;
z-index: 999;
}
.toolBtn{
@ -76,7 +82,7 @@ body{
transition: var(--transition);
}
.toolBtn p{
.toolBtn p, .toolBtn input{
display: none;
}