mirror of https://github.com/OpenVidu/openvidu.git
ov-components: enhance mobile responsiveness for panel and session components
parent
0407725437
commit
faaac23c66
|
@ -9,6 +9,16 @@
|
|||
align-items: stretch;
|
||||
}
|
||||
|
||||
// Mobile responsiveness - ensure panels occupy full width on mobile devices
|
||||
@media only screen and (max-width: 768px) {
|
||||
.panel-container {
|
||||
margin: 8px;
|
||||
max-height: calc(100% - 16px);
|
||||
min-height: calc(100% - 16px);
|
||||
border-radius: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.panel-header-container {
|
||||
padding: 10px;
|
||||
flex: inherit;
|
||||
|
|
|
@ -90,11 +90,21 @@
|
|||
position: absolute;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 600px) {
|
||||
@media only screen and (max-width: 768px) {
|
||||
#session-container {
|
||||
width: 100%;
|
||||
/* position: fixed; */
|
||||
}
|
||||
|
||||
.sidenav-menu {
|
||||
width: 100% !important;
|
||||
max-width: 100% !important;
|
||||
}
|
||||
|
||||
.big {
|
||||
width: 100% !important;
|
||||
max-width: 100% !important;
|
||||
}
|
||||
}
|
||||
|
||||
::ng-deep .mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
|
||||
|
|
Loading…
Reference in New Issue