Skip to content

Commit

Permalink
fix overflow in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
zippy committed Aug 7, 2024
1 parent 92626b8 commit dd8efd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -347,10 +347,10 @@ let sessionSummary = true

<main>
{#if error}
<span class="notice modal" style="max-width:700px;position:absolute; top:60px; left: 0;right: 0;margin: 0 auto; z-index:1000"
<span class="notice modal" style="overflow-y:auto;max-height:1000px;max-width:700px;position:absolute; top:60px; left: 0;right: 0;margin: 0 auto; z-index:1000"
>
<h3>I'm sorry to say it, but there has been an error ☹️</h3>
<div style="padding:10px; margin:10px; background:lightcoral;border-radius: 10px;">
<div style="padding:10px; margin:10px; background:lightcoral;border-radius: 10px;overflow-y:auto;max-height:500px">
{error}
</div>
{#if creds}
Expand Down

0 comments on commit dd8efd1

Please sign in to comment.