Add mobile css fixes
This commit is contained in:
parent
c237c53484
commit
ef8c27b625
1 changed files with 12 additions and 1 deletions
|
@ -16,7 +16,7 @@ limitations under the License.
|
||||||
|
|
||||||
|
|
||||||
.room {
|
.room {
|
||||||
position: fixed;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
|
@ -30,6 +30,12 @@ limitations under the License.
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 64px;
|
height: 64px;
|
||||||
|
max-width: 30%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header h5 {
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.backNav {
|
.backNav {
|
||||||
|
@ -88,6 +94,7 @@ limitations under the License.
|
||||||
flex: 1;
|
flex: 1;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 2px;
|
gap: 2px;
|
||||||
|
min-height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.participant {
|
.participant {
|
||||||
|
@ -124,6 +131,10 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
@media(min-width: 800px) {
|
@media(min-width: 800px) {
|
||||||
|
.room {
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
.roomContainer {
|
.roomContainer {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue