将server/app.tsx中的迁移管理按钮修改为红色样式

This commit is contained in:
yourname
2025-05-13 03:58:43 +00:00
parent 3acc4a5e49
commit 0dd93b8966

View File

@@ -347,14 +347,6 @@ export default function({ apiClient, app, moduleDir }: ModuleParams) {
</a>
{/* 迁移管理入口按钮 */}
<a
href="/migrations"
className="w-full flex justify-center py-3 px-4 border border-blue-600 rounded-md shadow-sm text-lg font-medium text-blue-600 bg-white hover:bg-blue-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"
>
</a>
{/* 移动端入口按钮 */}
<a
href="/mobile"
@@ -362,6 +354,15 @@ export default function({ apiClient, app, moduleDir }: ModuleParams) {
>
</a>
{/* 迁移管理入口按钮 */}
<a
href="/migrations"
className="w-full flex justify-center py-3 px-4 border border-red-600 rounded-md shadow-sm text-lg font-medium text-red-600 bg-white hover:bg-red-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500"
>
</a>
</div>
</div>
</div>