|
|
@@ -4,14 +4,14 @@
|
|
|
|
|
|
<div class="dialog-main question-main">
|
|
|
<div class="dialog-content question-content">
|
|
|
- <div>
|
|
|
- <DialogContent :content="question.content" class="question-content-core-text">
|
|
|
- <FileUploadPreviewV2
|
|
|
- v-if="question_attached_files.length !== 0"
|
|
|
- :file_list="question_attached_files"
|
|
|
- :enable_remove="false"
|
|
|
- />
|
|
|
- </DialogContent>
|
|
|
+ <div class="question-main-content">
|
|
|
+ <DialogContent :content="question.content" class="question-content-core-text"> </DialogContent>
|
|
|
+
|
|
|
+ <FileUploadPreviewV2
|
|
|
+ v-if="question_attached_files.length !== 0"
|
|
|
+ :file_list="question_attached_files"
|
|
|
+ :enable_remove="false"
|
|
|
+ />
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
@@ -84,4 +84,10 @@ const handleSelectChange = () => {
|
|
|
.question-icon img {
|
|
|
width: 100%;
|
|
|
}
|
|
|
+
|
|
|
+.question-main-content {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: flex-end;
|
|
|
+}
|
|
|
</style>
|