31 lines
681 B
HTML
31 lines
681 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>套娃采集助手</title>
|
|
<style>
|
|
/* 放大侧边栏宽度(Chrome side panel 受 min-width 约束) */
|
|
html, body, #root {
|
|
min-width: 460px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
background: #f5f5f5;
|
|
}
|
|
/* 缩小表单各项上下间距 */
|
|
.ant-form-item {
|
|
margin-bottom: 6px;
|
|
}
|
|
.ant-form-item .ant-form-item-label {
|
|
padding-bottom: 2px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="./App.tsx"></script>
|
|
</body>
|
|
</html>
|