perf(web): embed static files and templates

This commit is contained in:
2025-01-07 19:21:53 +03:00
parent 6ed054d56a
commit 02fb86049d
49 changed files with 27 additions and 7 deletions
File diff suppressed because one or more lines are too long
+14
View File
@@ -0,0 +1,14 @@
.loader {
display: block;
margin: 0 auto;
max-width: 20%;
}
.quote-form {
position: absolute;
top: 0;
right: 0;
left: 0;
height: 100vh;
background-color: #0008;
}
+11
View File
@@ -0,0 +1,11 @@
/* 自定义媒体查询设置根字体大小 */
@media (max-width: 640px) {
html {
font-size: 14px;
}
}
@media (width>640px) {
html {
font-size: 16px;
}
}