* 解决webUI模型配置页面卡片溢出问题

* fix: webUI卡片文本溢出问题
This commit is contained in:
sheetung
2025-05-19 18:11:50 +08:00
committed by GitHub
parent e5a99a0fe4
commit 5e5d37cbf1
2 changed files with 27 additions and 0 deletions
@@ -23,6 +23,7 @@
flex-direction: column;
justify-content: space-between;
gap: 0.4rem;
min-width: 0;
}
.basicInfoNameContainer {
@@ -88,3 +89,12 @@
font-weight: 400;
color: #ffcd27;
}
.bigText {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 1.4rem;
font-weight: bold;
max-width: 100%;
}