Hide join room header on small screens

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

View File

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