From 0ca6127fb91e5c3218ca3a04f751b996b994c265 Mon Sep 17 00:00:00 2001 From: NeoHW Date: Mon, 15 Jul 2024 03:07:20 +0800 Subject: [PATCH] Make button separated from rubric table --- ...c-question-edit-answer-form.component.html | 93 ++++++++++--------- ...c-question-edit-answer-form.component.scss | 9 ++ 2 files changed, 58 insertions(+), 44 deletions(-) diff --git a/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.html b/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.html index 2a7d9a6149b..feb16572466 100644 --- a/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.html +++ b/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.html @@ -1,58 +1,63 @@ - - - - - - - - - - - - - -
{{ choice }}
{{ questionDetails.rubricSubQuestions[i] }} - - -
-
-
-
- {{ questionDetails.rubricSubQuestions[i] }} -
-
-
-
\ No newline at end of file diff --git a/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.scss b/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.scss index 8dedeab443a..d5664b0b04b 100644 --- a/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.scss +++ b/src/web/app/components/question-types/question-edit-answer-form/rubric-question-edit-answer-form.component.scss @@ -17,3 +17,12 @@ display: none; } } + +.table-container { + margin-bottom: 1.25em; +} + +.button-container { + display: flex; + justify-content: flex-end; +}