We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92d68d commit 0040622Copy full SHA for 0040622
src/lib/components/TaskTables/TaskTable.svelte
@@ -64,7 +64,8 @@
64
}
65
66
function getBodyCellClasses(contestId: string, taskIndex: string): string {
67
- const baseClasses = 'w-1/2 xs:w-1/3 sm:w-1/4 md:w-1/5 lg:w-1/6 px-1 py-1 border';
+ const baseClasses =
68
+ 'w-1/2 xs:w-1/3 sm:w-1/4 md:w-1/5 lg:w-1/6 px-1 py-1 border hover:brightness-125 transition-all';
69
const backgroundColor = getBackgroundColor(taskTable[contestId][taskIndex]);
70
71
return `${baseClasses} ${backgroundColor}`;
0 commit comments