diff --git a/src/components/dashboard/SchematicList.svelte b/src/components/dashboard/SchematicList.svelte
index 422cc61..bada784 100644
--- a/src/components/dashboard/SchematicList.svelte
+++ b/src/components/dashboard/SchematicList.svelte
@@ -150,32 +150,32 @@
-
-
-
-
+
Previous
{#each pages as p}
-
- page = p.i} class="btn h-8 px-3 text-sm flex items-center !m-0 !rounded-none" class:btn-gray={!p.active}>
+ page = p.i} class="btn h-8 px-3 text-sm flex items-center !m-0 !rounded-none" class:btn-neutral={!p.active}>
{p.name}
{/each}
-
-
+
Next
-
- page = maxPage - 1} class="btn btn-gray h-8 px-3 text-sm flex items-center !m-0 !rounded-l-none">
+ page = maxPage - 1} class="btn btn-neutral h-8 px-3 text-sm flex items-center !m-0 !rounded-l-none">
Next
diff --git a/src/styles/button.css b/src/styles/button.css
index e75d1ae..f0cac91 100644
--- a/src/styles/button.css
+++ b/src/styles/button.css
@@ -53,6 +53,10 @@
@apply bg-gray-800 text-white;
}
+.btn-neutral {
+ @apply bg-neutral-800 text-white;
+}
+
.btn-text {
@apply bg-transparent underline text-white;
@apply hover:bg-transparent hover:outline hover:outline-1;