aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/src/routes/book/buttons/+page.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'apps/kit/src/routes/book/buttons/+page.svelte')
-rw-r--r--apps/kit/src/routes/book/buttons/+page.svelte13
1 files changed, 5 insertions, 8 deletions
diff --git a/apps/kit/src/routes/book/buttons/+page.svelte b/apps/kit/src/routes/book/buttons/+page.svelte
index 0a54930..19ba163 100644
--- a/apps/kit/src/routes/book/buttons/+page.svelte
+++ b/apps/kit/src/routes/book/buttons/+page.svelte
@@ -2,15 +2,12 @@
import Button from "$lib/components/button.svelte";
</script>
-<h1>Buttons</h1>
<section>
<h2>Primary</h2>
- <div class="">
- <Button kind="primary" text="Medium/Default" />
- <Button kind="primary" text="Large" size="lg" />
- <Button kind="primary" text="Small" size="sm" />
- <Button kind="primary" text="Extra large" size="xl" />
- </div>
+ <Button kind="primary" text="Small" size="sm" />
+ <Button kind="primary" text="Medium/Default" />
+ <Button kind="primary" text="Large" size="lg" />
+ <Button kind="primary" text="Extra large" size="xl" />
</section>
<section>
<h2>Secondary</h2>
@@ -22,5 +19,5 @@
</section>
<section>
<h2>Loading</h2>
- <Button kind="primary" loading={true} text="Wait" size="sm" />
+ <Button kind="primary" loading={true} text="Wait" />
</section>