refactor: update history page layout for results heading and delete button, including new button styling and icon
This commit is contained in:
parent
a00597440f
commit
d70d803038
1 changed files with 10 additions and 11 deletions
|
|
@ -47,17 +47,16 @@ export const history = new Elysia().use(userService).get(
|
||||||
`}
|
`}
|
||||||
>
|
>
|
||||||
<article class="article">
|
<article class="article">
|
||||||
<h1 class="mb-4 text-xl">Results</h1>
|
<div class="mb-4 flex items-center justify-between">
|
||||||
<div id="delete-selected-container" class="mb-4 hidden">
|
<h1 class="text-xl">Results</h1>
|
||||||
<button
|
<div id="delete-selected-container" class="hidden">
|
||||||
id="delete-selected-btn"
|
<button
|
||||||
class={`
|
id="delete-selected-btn"
|
||||||
rounded bg-red-600 px-4 py-2 text-white transition-colors
|
class="flex btn-secondary flex-row gap-2 text-contrast"
|
||||||
hover:bg-red-700
|
>
|
||||||
`}
|
<DeleteIcon /> <p>Delete Selected (<span id="selected-count">0</span>)</p>
|
||||||
>
|
</button>
|
||||||
Delete Selected (<span id="selected-count">0</span>)
|
</div>
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
<table
|
<table
|
||||||
class={`
|
class={`
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue