perf: 去除屏幕大小处理

This commit is contained in:
奔跑的面条
2022-10-01 17:26:52 +08:00
parent a96fa8f4b7
commit edecfc7116
3 changed files with 14 additions and 39 deletions
-21
View File
@@ -82,25 +82,4 @@
to {
opacity: 1;
}
}
/* 小屏处理 0~1000*/
.mobile-terminal {
display: none;
}
@media (max-width: 1000px) {
#app {
display: none;
}
.mobile-terminal {
display: flex;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
text-align: center;
font-size: 24px;
font-weight: 200;
background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
}
}