Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pimpin #2

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading