From f179a90e1b0dd16dec9588fde6e84c6d7ad469e4 Mon Sep 17 00:00:00 2001 From: Samuel Lim Date: Tue, 1 Oct 2024 08:41:58 +0800 Subject: [PATCH] Ensure question table is responsive to fit smaller viewports --- frontend/src/app/questions/questions.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/questions/questions.component.html b/frontend/src/app/questions/questions.component.html index da2cd6473a..d87a8e9da4 100644 --- a/frontend/src/app/questions/questions.component.html +++ b/frontend/src/app/questions/questions.component.html @@ -31,7 +31,7 @@ [value]="questions" [(selection)]="selectedQuestions" datakey="id" - [tableStyle]="{ 'table-layout': 'fixed' }" + [tableStyle]="{ 'min-width': '50rem' }" [paginator]="true" [rows]="5" [rowsPerPageOptions]="[5, 10, 20]"