🐞 fix: Update list to show url and adjust spacing
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -5,26 +5,34 @@
|
|||||||
|
|
||||||
<fieldset class="fieldset bg-base-100 rounded-box px-8 py-4 shadow-md">
|
<fieldset class="fieldset bg-base-100 rounded-box px-8 py-4 shadow-md">
|
||||||
<legend class="fieldset-legend h3">Start a new test</legend>
|
<legend class="fieldset-legend h3">Start a new test</legend>
|
||||||
<input type="text" class="input" placeholder="Type here" />
|
<div class="flex gap-0">
|
||||||
<p class="label">Add either single URL or link to sitemap</p>
|
<div class="w-fit m-0 p-0">
|
||||||
|
<input type="text" class="input" placeholder="Type here" />
|
||||||
|
<p class="label">Add either single URL or link to sitemap</p>
|
||||||
|
</div>
|
||||||
|
<button type="submit" class="btn btn-info">Test</button>
|
||||||
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<button type="submit" class="btn btn-info">Test</button>
|
|
||||||
|
|
||||||
<ul class="list bg-base-100 rounded-box shadow-md mt-8">
|
<ul class="list bg-base-100 rounded-box shadow-md mt-8">
|
||||||
<li class="list-row list-item text-slate-200 list-none">
|
<li class="list-row list-none">
|
||||||
<a href="/test/1" class="text-slate-300 link"><h3 class="inline-block mr-4">Test 1</h3></a>
|
<h3 class="text-slate-300 mr-4"><a href="/test/1" class="text-slate-300 link">Test 1</a></h3>
|
||||||
|
<span class="site-name list-col-grow">example.com</span>
|
||||||
<span class="badge badge-info">In Progress</span>
|
<span class="badge badge-info">In Progress</span>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-row list-item text-slate-200 list-none">
|
<li class="list-row list-none">
|
||||||
<a href="/test/2" class="text-slate-300 link"><h3 class="inline-block mr-4">Test 2</h3></a>
|
<h3 class="text-slate-300 mr-4"><a href="/test/2" class="text-slate-300 link">Test 2</a></h3>
|
||||||
|
<span class="site-name list-col-grow">example.com</span>
|
||||||
<span class="badge badge-success">Completed</span>
|
<span class="badge badge-success">Completed</span>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-row list-item text-slate-200 list-none">
|
<li class="list-row list-none">
|
||||||
<a href="/test/3" class="text-slate-300 link"><h3 class="inline-block mr-4">Test 3</h3></a>
|
<h3 class="text-slate-300 mr-4"><a href="/test/3" class="text-slate-300 link">Test 3</a></h3>
|
||||||
|
<span class="site-name list-col-grow">example.com</span>
|
||||||
<span class="badge badge-error">Failed</span>
|
<span class="badge badge-error">Failed</span>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-row list-item text-slate-200 list-none">
|
<li class="list-row list-none">
|
||||||
<a href="/test/4" class="text-slate-300 link"><h3 class="inline-block mr-4">Test 4</h3></a>
|
<h3 class="text-slate-300 mr-4"><a href="/test/4" class="text-slate-300 link">Test 4</a></h3>
|
||||||
|
<span class="site-name list-col-grow">example.com</span>
|
||||||
<span class="badge badge-warning">Pending</span>
|
<span class="badge badge-warning">Pending</span>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Reference in New Issue
Block a user