考试和问卷弹窗

This commit is contained in:
cxc
2022-05-05 19:48:27 +08:00
parent c03ba9e3ff
commit 1178a907e0
28 changed files with 2982 additions and 214 deletions

View File

@ -0,0 +1,20 @@
@media only screen and (min-width: 768px) {
.meeting-title {
font-size: 24px;
}
.meeting-time {
font-size: 16px;
}
.form-container {
padding: 0 10px 0;
.joinuser-wrap {
justify-content: space-between;
.joinuser-item {
width: 46%;
:deep(.el-form-item__label) {
width: 150px;
}
}
}
}
}

View File

@ -0,0 +1,23 @@
@media only screen and (max-width: 768px) {
// body {
// background-color: indianred;
// }
.meeting-title {
font-size: 7vw;
}
.meeting-time {
font-size: 5vw;
.title {
margin-right: 3vw;
}
}
.form-container {
padding: 0 2vw 0;
.joinuser-item {
width: 100%;
:deep(.el-form-item__label) {
width: 70px;
}
}
}
}