解决webUI模型配置页面卡片溢出问题 (#1451)

This commit is contained in:
sheetung
2025-05-19 13:14:39 +08:00
committed by GitHub
parent a594cc07f6
commit e5a99a0fe4

View File

@@ -33,6 +33,7 @@
display: flex;
flex-direction: column;
gap: 0.2rem;
min-width: 0;
width: 100%;
}
@@ -118,3 +119,12 @@
font-weight: 400;
color: #2288ee;
}
.bigText {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 1.4rem;
font-weight: bold;
max-width: 100%;
}