Hide join room header on small screens

This commit is contained in:
Robert Long 2021-12-10 15:37:11 -08:00
commit c5654e4398

View file

@ -44,6 +44,10 @@ limitations under the License.
flex: 1; flex: 1;
} }
.joinRoomContent h1 {
display: none;
}
.joinRoomFooter { .joinRoomFooter {
margin: 20px 0; margin: 20px 0;
} }
@ -57,6 +61,7 @@ limitations under the License.
.preview { .preview {
position: relative; position: relative;
max-width: 816px; max-width: 816px;
max-height: 75vh;
border-radius: 24px; border-radius: 24px;
overflow: hidden; overflow: hidden;
background-color: var(--bgColor3); background-color: var(--bgColor3);
@ -158,4 +163,8 @@ limitations under the License.
.footer { .footer {
height: 118px; height: 118px;
} }
.joinRoomContent h1 {
display: block;
}
} }