Files
developer.sailpoint.com/archive/stream/room/styles.module.css
2023-04-18 09:17:39 -05:00

45 lines
732 B
CSS

.stageContentVideo {
flex-grow: 1;
aspect-ratio: 16/9;
border-radius: 7px;
overflow: hidden;
}
@media screen and (max-width: 1000px) {
/* Actual stage containers */
.stageContainer {
/* margin-top: 1em; */
padding: 0.5%;
gap: 8px;
height: 100%;
display: flex;
flex-direction: column;
}
.stageContentChat {
min-height: 720px;
flex-grow: 1;
}
.stageContentChat > iframe {
min-height: 720px;
flex-grow: 1;
}
}
@media screen and (min-width: 1000px) {
/* Actual stage containers */
.stageContainer {
padding: 0.5%;
gap: 0.5%;
flex-grow: 1;
height: 100%;
display: flex;
flex-direction: row;
}
.stageContentChat {
min-width: 30%;
}
}