Skip to content

Commit 8b1f8cd

Browse files
authored
Merge pull request #2401 from AtCoder-NoviSteps/#2400
🎨 Update column width in contest table (#2400)
2 parents cda0451 + 3d2b08c commit 8b1f8cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib/utils/contest_table_provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ export class Typical90Provider extends ContestTableProviderBase {
335335
isShownHeader: false,
336336
isShownRoundLabel: false,
337337
roundLabelWidth: '', // No specific width for the round label in Typical90
338-
tableBodyCellsWidth: 'w-1/2 lg:w-1/3 xl:w-1/4 px-1 py-2',
338+
tableBodyCellsWidth: 'w-1/2 xl:w-1/3 px-1 py-2',
339339
isShownTaskIndex: true,
340340
};
341341
}

src/test/lib/utils/contest_table_provider.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ describe('ContestTableProviderBase and implementations', () => {
450450
expect(displayConfig.isShownHeader).toBe(false);
451451
expect(displayConfig.isShownRoundLabel).toBe(false);
452452
expect(displayConfig.roundLabelWidth).toBe('');
453-
expect(displayConfig.tableBodyCellsWidth).toBe('w-1/2 lg:w-1/3 xl:w-1/4 px-1 py-2');
453+
expect(displayConfig.tableBodyCellsWidth).toBe('w-1/2 xl:w-1/3 px-1 py-2');
454454
expect(displayConfig.isShownTaskIndex).toBe(true);
455455
});
456456

0 commit comments

Comments
 (0)