Skip to content

Commit

Permalink
feat: update logbanner display
Browse files Browse the repository at this point in the history
  • Loading branch information
bbtgnn committed Mar 1, 2024
1 parent 7d434f1 commit 3e327df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/_modules/components/LogBanner.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
</script>

{#if dev || $config.showLogBanners}
<div class="border border-stone-300 bg-stone-100 p-4 text-stone-800">
<name class="font-bold">{name}</name>
<p>{message}</p>
<div class="max-h-80 overflow-scroll border border-stone-300 bg-stone-100 p-4 text-stone-800">
<p class="mb-4 font-bold">{name}</p>
<pre>{message.trim()}</pre>
</div>
{/if}

0 comments on commit 3e327df

Please sign in to comment.