From d5cae6e88c432ec7139caee2de2c7aee30af9c1b Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Sun, 31 Jul 2022 15:21:55 -0500 Subject: Copy all emails button, PT and Labs table data not bold anymore. --- src/components/Labs.svelte | 24 ++++++++------ src/components/PeerTeachers.svelte | 64 +++++++++++++++++++++++++++++--------- src/components/helpers/Icon.svelte | 5 +++ 3 files changed, 69 insertions(+), 24 deletions(-) (limited to 'src') diff --git a/src/components/Labs.svelte b/src/components/Labs.svelte index 0cd685a..f38cd7e 100644 --- a/src/components/Labs.svelte +++ b/src/components/Labs.svelte @@ -73,8 +73,14 @@ {#each headers as header, i} {#if i == 0} - {labs.length} - +
+ {labs.length} + +
{:else} {header} @@ -90,13 +96,13 @@ }} class={selected_lab == l.lab ? "active" : "hover"} > - {i + 1} - {l.lab?.course} - {l.lab?.section} - {l.lab?.time} - {l.lab?.location} - {displayFaculty(l.lab)} - {l.pt?.name ?? "UNASSIGNED"} - + {i + 1} + {l.lab?.course} - {l.lab?.section} + {l.lab?.time} + {l.lab?.location} + {displayFaculty(l.lab)} + {l.pt?.name ?? "UNASSIGNED"} + {/each} diff --git a/src/components/PeerTeachers.svelte b/src/components/PeerTeachers.svelte index 0ff7f47..56da10f 100644 --- a/src/components/PeerTeachers.svelte +++ b/src/components/PeerTeachers.svelte @@ -1,10 +1,16 @@ -- cgit v1.2.3