Skip to content

Commit

Permalink
Minor UI Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
KreativeThinker committed Apr 10, 2024
1 parent 2aed2a7 commit 9018d05
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/routes/(protected)/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<script lang="ts">
import { auth_user, user } from '$lib/stores';
import { onMount } from 'svelte';
import { base } from '$app/paths';
import supabase from '$lib/supabase';
import Loading from '$lib/components/Loading.svelte';
import Onboard from '$lib/components/Onboard.svelte';
Expand Down Expand Up @@ -33,7 +34,7 @@
<Loading {loading}>
<div class="absolute left-0 top-0 -z-10 h-full w-full overflow-hidden">
<img
src="assets/Asset 1.png"
src="{base}/assets/Asset 1.png"
class="gradient absolute top-52 -z-10 h-[1024px] w-[1024px] rotate-[128deg] overflow-hidden"
alt="Gradient"
/>
Expand Down
6 changes: 5 additions & 1 deletion src/routes/(protected)/dashboard/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
import { onMount } from 'svelte';
import supabase from '$lib/supabase';
let team_members: any = [];
interface TeamMembers {
name: string;
reg_no: string;
}
let team_members: TeamMembers[] = [];
let isContentVisible = false;
let buttonText: string = 'Copy Team ID';
let copied = false;
Expand Down

0 comments on commit 9018d05

Please sign in to comment.