From 3d82c36250ccb9da44604386840222cfca7de5e5 Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Tue, 8 Oct 2024 16:03:37 +0530 Subject: [PATCH 1/2] fix: quiz columns --- frontend/src/pages/QuizForm.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/pages/QuizForm.vue b/frontend/src/pages/QuizForm.vue index 74376ce1..e42d6624 100644 --- a/frontend/src/pages/QuizForm.vue +++ b/frontend/src/pages/QuizForm.vue @@ -362,17 +362,17 @@ const questionColumns = computed(() => { { label: __('ID'), key: 'question', - width: '25%', + width: '10rem', }, { label: __('Question'), key: __('question_detail'), - width: '60%', + width: '40rem', }, { label: __('Marks'), key: 'marks', - width: '10%', + width: '10rem', }, ] }) From 3cd08c80c8682fd5c113f042a25864e54d5cab3e Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Tue, 8 Oct 2024 16:09:21 +0530 Subject: [PATCH 2/2] fix: reduced with of marks column --- frontend/src/pages/QuizForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/QuizForm.vue b/frontend/src/pages/QuizForm.vue index e42d6624..125e6438 100644 --- a/frontend/src/pages/QuizForm.vue +++ b/frontend/src/pages/QuizForm.vue @@ -372,7 +372,7 @@ const questionColumns = computed(() => { { label: __('Marks'), key: 'marks', - width: '10rem', + width: '5rem', }, ] })