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
<h3>Installed Plugins</h3>
<table class="table">
<table class="table table-responsive text-center align-middle">
<thead>
<tr>
<th>Name</th>

View File

@@ -13,7 +13,7 @@
<h3>Available Plugins</h3>
@if (_onlinePlugins.Any())
{
<table class="table table-bordered">
<table class="table table-responsive text-center align-middle">
<thead>
<tr>
<th>Name</th>
@@ -32,7 +32,9 @@
<td>@plugin.Author</td>
<td>@plugin.Version</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>
</tr>
}