diff --git a/web/src/app/admin/menus/page.tsx b/web/src/app/admin/menus/page.tsx index 7b3e9e9..9aa7d0c 100644 --- a/web/src/app/admin/menus/page.tsx +++ b/web/src/app/admin/menus/page.tsx @@ -23,7 +23,7 @@ import { type CardProps, type TableColumnsType, } from "antd"; -import type { ComponentType } from "react"; +import type { CSSProperties, ComponentType } from "react"; import { useAuth } from "@/components/auth-provider"; import { useTopicSubscription } from "@/hooks/use-topic-subscription"; @@ -551,7 +551,11 @@ export default function AdminMenusPage() { -
+
rowKey="id" dataSource={filteredMenus} diff --git a/web/src/app/globals.css b/web/src/app/globals.css index 79a1589..1490c91 100644 --- a/web/src/app/globals.css +++ b/web/src/app/globals.css @@ -208,6 +208,10 @@ body { scrollbar-gutter: stable; } +.admin-menus-table-anchor .ant-table-body { + min-height: var(--admin-menus-table-body-min-height, 180px); +} + .fquiz-row-selected > td { background: var(--fquiz-theme-bg-active) !important; }