mobile . themes

This commit is contained in:
2026-03-05 12:57:55 +08:00
parent b5b9f7db06
commit c325007897
62 changed files with 835 additions and 150 deletions

View File

@@ -7,16 +7,16 @@
<h1 class="text-3xl font-extrabold bg-gradient-to-r from-blue-400 via-purple-400 to-pink-400 bg-clip-text text-transparent">杯赛管理</h1>
<div class="futuristic-card-dark overflow-hidden">
<div class="overflow-x-auto">
<table class="table-futuristic">
<div class="table-responsive">
<table class="table-futuristic" style="min-width: 900px;">
<thead>
<tr>
<th>ID</th>
<th>名称</th>
<th>主办方</th>
<th>状态</th>
<th>开始日期</th>
<th>操作</th>
<th style="min-width: 60px;">ID</th>
<th style="min-width: 200px;">名称</th>
<th style="min-width: 150px;">主办方</th>
<th style="min-width: 120px;">状态</th>
<th style="min-width: 150px;">开始日期</th>
<th style="min-width: 180px;">操作</th>
</tr>
</thead>
<tbody id="contests-tbody">
@@ -56,8 +56,8 @@ async function loadContests() {
: '<span class="text-xs text-red-500">已废止</span>';
html += `<tr>
<td>${c.id}</td>
<td class="font-medium text-slate-200">${c.name}</td>
<td class="text-slate-400">${c.organizer || '-'}</td>
<td class="font-medium text-slate-200" style="max-width: 200px; white-space: normal; word-wrap: break-word;">${c.name}</td>
<td class="text-slate-400" style="max-width: 150px; white-space: normal; word-wrap: break-word;">${c.organizer || '-'}</td>
<td><span class="badge-futuristic ${statusClass}">${statusText}</span></td>
<td class="text-slate-400">${c.start_date || '-'}</td>
<td class="space-x-2">