Skip to content

Commit

Permalink
Left align buttons in modal mode, center in fullpageh
Browse files Browse the repository at this point in the history
  • Loading branch information
budak7273 committed Sep 3, 2024
1 parent 5a2c3e8 commit b484885
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/lib/components/modals/ErrorDetails.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
</p>
</section>
<section class={sectionClass}>
<p class="text-base">
<p class={`text-base ${fullPageMode ? 'text-center' : ''}`}>
<button
class="btn text-primary-600 variant-ringed"
on:click={onClickGenerateDebugInfo}
Expand All @@ -99,15 +99,15 @@
</p>
</section>
{#if debugFileGenerationError}
<section class={sectionClass}>
<section class={`${sectionClass} ${fullPageMode ? 'text-center' : ''}`}>
<p class="text-base text-red-500">
<T
defaultValue="An error occurred while generating the debug file. Please manually check your Satisfactory Mod Manager log files for more information and report this on the Discord. Use the button below to open the documentation and learn how."
keyName="error.failed_to_generate_debug"
/>
</p>
</section>
<section class={sectionClass}>
<section class={`${sectionClass} ${fullPageMode ? 'text-center' : ''}`}>
<button
class="btn text-primary-600 variant-ringed"
on:click={OpenLogDocs}
Expand Down

0 comments on commit b484885

Please sign in to comment.