Merge branch 'master' of github.com:wyongk/juip-proxy-react

This commit is contained in:
Eamon-meng
2025-06-10 12:52:14 +08:00
23 changed files with 538 additions and 548 deletions

View File

@@ -81,7 +81,7 @@ export default function Charts() {
<Card className="h-full">
<CardContent className="overflow-hidden">
<Tabs defaultValue="dynamic" className="h-full gap-4">
<TabsList>
<TabsList className="h-9">
<TabsTrigger value="dynamic" className="data-[state=active]:text-primary">
IP
</TabsTrigger>

View File

@@ -29,7 +29,7 @@ export default function Navbar(props: NavbarProps) {
data-expand={navbar}
className={merge(
`transition-[flex-basis] duration-300 ease-in-out`,
`flex flex-col overflow-hidden group`,
`h-full flex flex-col overflow-hidden group`,
`data-[expand=true]:basis-52 data-[expand=false]:basis-16`,
)}>
{/* logo */}
@@ -54,7 +54,7 @@ export default function Navbar(props: NavbarProps) {
{/* routes */}
<section className={merge(
`transition-[padding] duration-300 ease-in-out`,
`flex-auto overflow-x-hidden overflow-y-auto`,
`flex-auto overflow-x-hidden overflow-y-auto pb-4`,
`group-data-[expand=true]:px-4 group-data-[expand=false]:px-3`,
)}>
<TooltipProvider>

View File

@@ -6,7 +6,7 @@ export type ExtractPageProps = {}
export default async function ExtractPage(props: ExtractPageProps) {
return (
<Page>
<Extract className="p-8"/>
<Extract/>
</Page>
)
}