This commit is contained in:
aaron 2026-02-15 14:24:33 +08:00
parent f5c2051226
commit ffca7037ed

View File

@ -2,10 +2,16 @@
<html lang="zh-CN"> <html lang="zh-CN">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Tradus Auto Trading | Based on AI Agent</title> <title>Tradus Auto Trading | Based on AI Agent</title>
<link rel="stylesheet" href="/static/css/style.css"> <link rel="stylesheet" href="/static/css/style.css">
<style> <style>
/* 防止横向滚动 */
html, body {
overflow-x: hidden;
max-width: 100vw;
}
/* 覆盖全局 #app 样式 */ /* 覆盖全局 #app 样式 */
#app { #app {
height: auto; height: auto;
@ -13,6 +19,7 @@
align-items: initial; align-items: initial;
justify-content: initial; justify-content: initial;
padding: 0; padding: 0;
overflow-x: hidden;
} }
.trading-page { .trading-page {
@ -554,11 +561,18 @@
@media (max-width: 768px) { @media (max-width: 768px) {
.trading-page { .trading-page {
padding: 10px; padding: 10px;
overflow-x: hidden;
} }
.trading-container { .trading-container {
min-width: auto; min-width: auto;
max-width: 100%; max-width: 100%;
overflow-x: hidden;
}
/* 取消顶部固定 */
.sticky-header {
position: static;
} }
.trading-header { .trading-header {
@ -583,10 +597,12 @@
.stat-card { .stat-card {
padding: 12px; padding: 12px;
min-width: 0;
} }
.stat-value { .stat-value {
font-size: 18px; font-size: 16px;
word-break: break-all;
} }
.tabs { .tabs {
@ -632,6 +648,17 @@
.monitor-status span { .monitor-status span {
display: none; display: none;
} }
/* 实时价格 */
.price-list {
flex-direction: column;
gap: 8px;
}
.price-item {
width: 100%;
box-sizing: border-box;
}
} }
@media (max-width: 480px) { @media (max-width: 480px) {