Skip to content

Commit

Permalink
fix: main cat title in print
Browse files Browse the repository at this point in the history
  • Loading branch information
Pipazoul committed Dec 11, 2023
1 parent 92682ea commit ebbb6b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@
{#if display}
{#each displayedCategories as categories, categoriesIndex}
{#if categories.checked}
<div class="print:flex print:items-center print:break-after-page print:break-before-page ">
<h1 class="text-4xl print:text-center">{categories?.category_label}</h1>
<div class="print:h-screen print:flex print:justify-center print:items-center print:break-after-page print:break-before-page ">
<h1 class="text-4xl">{categories?.category_label}</h1>
</div>
{#each categories.sub_categorie_items as category, categoryIndex}
{#if category?.checked}
Expand Down

0 comments on commit ebbb6b0

Please sign in to comment.