@
修复决策卡片 grid minmax(0,1fr) 导致的内容溢出 MacBook 上 minmax(0,1fr) 会使列宽坍缩为 0,内容被截断。 改为 1fr + width:100% 确保决策带和市场决策区正常展示。 @
This commit is contained in:
@@ -694,7 +694,7 @@
|
|||||||
|
|
||||||
.root :global(.scan-ai-decision-band) {
|
.root :global(.scan-ai-decision-band) {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: minmax(0, 1fr) auto;
|
grid-template-columns: 1fr auto;
|
||||||
gap: 18px;
|
gap: 18px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border: 1px solid rgba(77, 163, 255, 0.18);
|
border: 1px solid rgba(77, 163, 255, 0.18);
|
||||||
@@ -716,6 +716,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.root :global(.scan-ai-decision-main) {
|
.root :global(.scan-ai-decision-main) {
|
||||||
|
width: 100%;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -756,7 +757,7 @@
|
|||||||
|
|
||||||
.root :global(.scan-ai-market-decision) {
|
.root :global(.scan-ai-market-decision) {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: minmax(0, 1fr) auto auto;
|
grid-template-columns: 1fr auto auto;
|
||||||
gap: 12px;
|
gap: 12px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-top: 14px;
|
margin-top: 14px;
|
||||||
@@ -764,6 +765,7 @@
|
|||||||
border-radius: 14px;
|
border-radius: 14px;
|
||||||
background: rgba(11, 18, 32, 0.44);
|
background: rgba(11, 18, 32, 0.44);
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.root :global(.scan-ai-market-decision.warm) {
|
.root :global(.scan-ai-market-decision.warm) {
|
||||||
|
|||||||
Reference in New Issue
Block a user