File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
src/components/information Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,9 @@ const closeBtnProps = {
9292 :max-width =" xs ? undefined : 800"
9393 >
9494 <template #activator =" { props: activatorProps } " >
95- <div :class =" $style.button" v-bind =" activatorProps" >参加者の回答を見る</div >
95+ <div style =" display : flex ; justify-content : flex-end " >
96+ <div :class =" $style.button" v-bind =" activatorProps" >参加者の回答を見る</div >
97+ </div >
9698 </template >
9799
98100 <template #default =" { isActive } " >
@@ -139,9 +141,9 @@ const closeBtnProps = {
139141
140142.button {
141143 margin-top : 10px ;
142- width : 100% ;
143- text-align : end ;
144144 font-size : 12px ;
145+ padding : 4px 0px ;
146+ display : inline-block ;
145147 font-weight : 400 ;
146148 color : #0066ff ;
147149 cursor : pointer ;
Original file line number Diff line number Diff line change 22import type { components } from ' @/api/schema'
33import QuestionShowField from ' @/components/information/QuestionShowField.vue'
44import { computed } from ' vue'
5+ import AnswerDialog from ' @/components/information/AnswersDialog.vue'
56
67type QuestionGroup = components [' schemas' ][' QuestionGroupResponse' ]
78type Question = components [' schemas' ][' QuestionResponse' ]
@@ -61,6 +62,7 @@ const questionUnits = computed(() => props.getQuestionUnits(props.questionGroup.
6162 />
6263 </div >
6364 </div >
65+ <answer-dialog :question-group =" props.questionGroup" />
6466 </v-card-text >
6567 </v-card >
6668</template >
You can’t perform that action at this time.
0 commit comments