From 0e92b9baf56c69643e8eeeba7d45451c15eacd83 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 17 Sep 2025 22:15:01 -0700 Subject: [PATCH] small changes and fixes to character datagrid --- src/routes/database/characters/+page.svelte | 35 ++++++--------------- 1 file changed, 10 insertions(+), 25 deletions(-) diff --git a/src/routes/database/characters/+page.svelte b/src/routes/database/characters/+page.svelte index bf842f39..93aaf74f 100644 --- a/src/routes/database/characters/+page.svelte +++ b/src/routes/database/characters/+page.svelte @@ -1,16 +1,17 @@ -
+
@@ -69,24 +69,9 @@ @use '$src/themes/spacing' as spacing; @use '$src/themes/typography' as typography; - .database-page { + .page { padding: spacing.$unit-2x 0; max-width: 1400px; margin: 0 auto; } - - .page-header { - margin-bottom: spacing.$unit-2x; - - h1 { - font-size: typography.$font-xxlarge; - font-weight: typography.$bold; - margin-bottom: spacing.$unit-half; - } - - .subtitle { - font-size: typography.$font-regular; - color: colors.$grey-50; - } - }