c7fdfed00c
- Add new store to send mobile size - Update style to show video for mobile size
50 lines
737 B
SCSS
50 lines
737 B
SCSS
@media (hover: none) {
|
|
/**
|
|
* If we cannot hover over elements, let's display camera button in full.
|
|
*/
|
|
.btn-cam-action {
|
|
div {
|
|
transform: translateY(0px);
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 700px),
|
|
screen and (max-height: 700px){
|
|
video.myCamVideo {
|
|
width: 150px;
|
|
}
|
|
|
|
.div-myCamVideo.hide {
|
|
right: -160px;
|
|
}
|
|
|
|
.sidebar {
|
|
width: 20%;
|
|
min-width: 200px;
|
|
position: absolute;
|
|
display: block;
|
|
right: 0;
|
|
height: 80%;
|
|
|
|
&> div {
|
|
min-width: 200px;
|
|
max-height: 21vh;
|
|
}
|
|
|
|
.video-container{
|
|
min-width: 200px;
|
|
}
|
|
}
|
|
|
|
.main-section {
|
|
position: absolute;
|
|
width: 100%;
|
|
min-width: 400px;
|
|
|
|
& > div {
|
|
z-index: 2;
|
|
}
|
|
}
|
|
}
|