mirror of
https://github.com/jcreek/SvelteKitSaasBoilerplate.git
synced 2026-07-15 12:03:49 +00:00
Merge pull request #105 from jcreek/98-improve-styling-of-credit-dashboard
98 improve styling of credit dashboard
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
import { type NavLinkItem } from '$lib/types/Nav/NavLinkItem';
|
import { type NavLinkItem } from '$lib/types/Nav/NavLinkItem';
|
||||||
import type { Session } from '@supabase/supabase-js';
|
import type { Session } from '@supabase/supabase-js';
|
||||||
import NavLinkParent from './NavLinkParent.svelte';
|
import NavLinkParent from './NavLinkParent.svelte';
|
||||||
import type SupabaseClient from '@supabase/supabase-js/dist/module/SupabaseClient';
|
import { type SupabaseClient } from '@supabase/supabase-js';
|
||||||
import NavLink from './NavLink.svelte';
|
import NavLink from './NavLink.svelte';
|
||||||
|
|
||||||
export let session: Session | null;
|
export let session: Session | null;
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
import Chart, { type ChartData } from 'chart.js/auto';
|
import Chart, { type ChartData } from 'chart.js/auto';
|
||||||
import { DataTable } from 'simple-datatables';
|
import { DataTable } from 'simple-datatables';
|
||||||
|
import 'simple-datatables/dist/style.css';
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
const { creditsRemaining, transactions, monthlyAggregates } = data;
|
const { creditsRemaining, transactions, monthlyAggregates } = data;
|
||||||
|
|||||||
Reference in New Issue
Block a user