30 lines
582 B
CSS
30 lines
582 B
CSS
.palm-camera-modal__camera {
|
|
border-radius: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.palm-camera-modal__hand-icon {
|
|
height: calc(100% - 120px);
|
|
left: 50%;
|
|
position: absolute;
|
|
top: 20px;
|
|
transform: translate(-50%);
|
|
width: auto;
|
|
}
|
|
|
|
.palm-camera-modal__button-shutter {
|
|
background: var(--white);
|
|
border-radius: 50%;
|
|
bottom: 30px;
|
|
height: 30px;
|
|
left: 50%;
|
|
outline: 20px solid hsla(0,0%,100%,.28);
|
|
position: absolute;
|
|
-webkit-transform: translateX(-50%);
|
|
transform: translateX(-50%);
|
|
width: 30px;
|
|
}
|