fix:问卷标题样式

This commit is contained in:
du.meimei
2025-03-25 19:11:58 +08:00
parent e7c6ea225c
commit 562fa7d478
3 changed files with 19 additions and 2 deletions

View File

@@ -366,8 +366,18 @@ onMounted(() => {
}
.survey_item_info_title {
display: flex;
.el-text {
font-size: 15px;
// 添加以下样式处理文本溢出
&:first-child {
display: inline-block;
max-width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
& > :nth-child(2) {