Updated the UI for the bot

This commit is contained in:
2025-05-26 21:17:59 +03:00
parent 7de5d88aea
commit fcd3a59d54
2 changed files with 5 additions and 3 deletions

View File

@@ -13,7 +13,7 @@
@inject NavigationManager Navigation @inject NavigationManager Navigation
<h3>Installed Plugins</h3> <h3>Installed Plugins</h3>
<table class="table"> <table class="table table-responsive text-center align-middle">
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Name</th>

View File

@@ -13,7 +13,7 @@
<h3>Available Plugins</h3> <h3>Available Plugins</h3>
@if (_onlinePlugins.Any()) @if (_onlinePlugins.Any())
{ {
<table class="table table-bordered"> <table class="table table-responsive text-center align-middle">
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Name</th>
@@ -32,7 +32,9 @@
<td>@plugin.Author</td> <td>@plugin.Author</td>
<td>@plugin.Version</td> <td>@plugin.Version</td>
<td> <td>
<button type="button" class="btn" @onclick="async () => await InstallPlugin(plugin.Id)">Download</button> <button class="btn btn-outline-dark" @onclick="async () => await InstallPlugin(plugin.Id)">
<span>Download</span>
</button>
</td> </td>
</tr> </tr>
} }