Setup menu bar for viewer actions

Signed-off-by: Justin Georgi <justin.georgi@gmail.com>
This commit is contained in:
2024-10-27 20:42:28 -07:00
parent 3b5c2e993d
commit 2163f9158a
2 changed files with 40 additions and 4 deletions

View File

@@ -63,4 +63,25 @@
.gallerybox .gallerytext div:has(model-viewer) {
display: none;
}
.glmv-container {
position: relative;
}
.glmv-menu {
border: solid 2px #0000008F;
overflow: hidden;
height: 32px;
width: 32px;
text-align: center;
font-weight: bold;
border-radius: 6px;
transition: width .75s;
position: absolute;
bottom: 50px;
left: 0;
&:hover {
width: 100%
}
}