Skip to content

Commit

Permalink
fixed layout issue
Browse files Browse the repository at this point in the history
  • Loading branch information
matryer committed Jul 14, 2021
1 parent 3e6f4a0 commit b766dea
Showing 1 changed file with 19 additions and 20 deletions.
39 changes: 19 additions & 20 deletions app/frontend/src/InstalledPluginView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@

<div class="flex flex-col h-full max-w-full">
<div class="p-6 space-x-8">
<div>
<div class="flex space-x-8">
<PluginDetails plugin="{installedPlugin}">
<div slot="action" class="pl-3">
<Spinner
Expand All @@ -208,28 +208,27 @@
{/if}
</div>
</PluginDetails>
{#if installedPlugin}
<div class="p-3 flex space-x-5">
<Button
on:click="{() =>
gotoOpenPluginIssue(installedPlugin)}"
>
Open issue&hellip;
</Button>
<Button on:click="{onUninstallClick}">
Uninstall this plugin
</Button>
{#if installedPlugin && installedPlugin.imageURL}
<div class="flex-shrink mb-8">
<img
alt="Screenshot of {installedPlugin.title}"
src="{installedPlugin.imageURL}"
onerror="this.style.display='none'"
class="plugin-image max-h-64"
/>
</div>
{/if}
</div>
{#if installedPlugin && installedPlugin.imageURL}
<div class="flex-shrink mb-8">
<img
alt="Screenshot of {installedPlugin.title}"
src="{installedPlugin.imageURL}"
onerror="this.style.display='none'"
class="plugin-image max-h-64"
/>
{#if installedPlugin}
<div class="p-3 flex space-x-5">
<Button
on:click="{() => gotoOpenPluginIssue(installedPlugin)}"
>
Open issue&hellip;
</Button>
<Button on:click="{onUninstallClick}">
Uninstall this plugin
</Button>
</div>
{/if}
</div>
Expand Down

0 comments on commit b766dea

Please sign in to comment.