Style new button

This commit is contained in:
Korbs 2024-11-30 15:56:35 -05:00
parent 66b259a105
commit 8cc88ff42e

View file

@ -23,6 +23,7 @@
height: 100%; height: 100%;
object-fit: contain; object-fit: contain;
z-index: 1; z-index: 1;
pointer-events: none;
} }
canvas { canvas {
top: 0px; top: 0px;
@ -66,6 +67,13 @@
opacity: 0; opacity: 0;
transition: 0.3s opacity; transition: 0.3s opacity;
} }
#vc-gestures {
height: 100%;
background: gray;
opacity: 0.5;
border-radius: 12px;
border: 6px white dashed;
}
.vc-bottom { .vc-bottom {
display: flex; display: flex;
gap: 12px; gap: 12px;
@ -213,6 +221,27 @@
transition: 0.3s opacity; transition: 0.3s opacity;
} }
.big-present-button {
position: absolute;
top: 50%;
left: 50%;
z-index: 10;
transform: translate(-50%, -50%);
color: white;
border: none;
border-radius: 6rem;
background: rgba(0, 0, 0, 0.32);
display: flex;
align-items: center;
justify-content: center;
padding: 32px;
cursor: pointer;
i::before {
width: 64px;
height: 64px;
}
}
.vc-menu { .vc-menu {
position: absolute; position: absolute;
right: 0px; right: 0px;