Skip to content

Commit

Permalink
pimpin (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
JSpring0303 authored Nov 1, 2024
1 parent 5d77273 commit f0b68c5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
1 change: 1 addition & 0 deletions src/lib/components/ui/button/button.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"ghost-destructive":
"hover:bg-destructive hover:text-foreground",
link: "text-primary underline-offset-4 hover:underline",
folder:""
},
size: {
default: "h-10 px-4 py-2",
Expand Down
18 changes: 12 additions & 6 deletions src/routes/(app)/app/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,19 @@
};
</script>

<Main class="min-h-app-main max-w-screen-lg">
<h1 class="text-3xl font-bold">Welcome to SvelteKit</h1>
<!--Home Page Test-->

<p>
Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a>
to read the documentation
</p>
<Main class="min-h-app-main max-w-screen-lg">
<div>
<h1 class="text-3xl font-bold">Folders</h1>
<div>
<!-- Div to store each folder / folder button in-->
<Button variant="folder">Work</Button>
<Button variant="destructive">Personal</Button>
<Button variant="destructive">Photos</Button>
<Button variant="destructive">Bills</Button>
</div>
</div>

<Button onclick={aaaa} variant="default">Button</Button>
<Button variant="destructive">AAAAAAAA</Button>
Expand Down

0 comments on commit f0b68c5

Please sign in to comment.