feat: 定投标记展示

This commit is contained in:
hzm
2026-03-04 08:30:30 +08:00
parent be4fc5eabe
commit c9038757dd
5 changed files with 30 additions and 1 deletions

View File

@@ -1412,6 +1412,28 @@ input[type="number"] {
transform: translateY(-1px);
}
.dca-indicator {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 16px;
height: 16px;
padding: 0 4px;
border-radius: 999px;
background: rgba(34, 211, 238, 0.15);
color: #22d3ee;
font-size: 10px;
font-weight: 500;
margin-left: 6px;
vertical-align: middle;
transform: translateY(-1px);
}
[data-theme="light"] .dca-indicator {
background: rgba(6, 182, 212, 0.15);
color: #0891b2;
}
.code-text {
font-size: 11px;
}