refactor(survey): 优化问卷预览页面样式和布局

- 调整了 Choice、Completion 和 FileUpload 组件的样式- 优化了预览页面的滚动和固定元素布局
- 添加了底部支持信息的固定显示- 统一了样式和间距,提高了页面的视觉效果和用户体验
This commit is contained in:
陈昱达
2025-03-23 16:20:19 +08:00
parent 74deac6195
commit 5ae09ce20e
5 changed files with 44 additions and 31 deletions

View File

@@ -167,17 +167,13 @@ const emitValue = () => {
& .other-input {
width: 100%;
height: 89px;
background: #ffffff;
padding: 3px 5px;
border: 1px solid #ccc;
border-radius: 8px;
min-height: 89px;
margin-top: 4px;
margin-bottom: 10px;
padding: 12px;
border: 1px solid #f4f4f4;
border-radius: 5px;
outline: none;
// 禁止拖动
-webkit-user-select: none;
-moz-user-select: none;
//textarea禁止扩大
resize: none;
}
}
</style>