From 3d82c36250ccb9da44604386840222cfca7de5e5 Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Tue, 8 Oct 2024 16:03:37 +0530 Subject: [PATCH] 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', }, ] })