Files
ragflow/web/src/pages/admin/monitoring.tsx
Jimmy Ben Klieve 1cd54832b5 Adjust styles to match the design system (#11118)
### What problem does this PR solve?

- Modify and adjust styles (CSS vars, components) to match the design
system
- Adjust file and directory structure of admin UI

### Type of change

- [x] Refactoring
2025-11-10 10:05:19 +08:00

20 lines
563 B
TypeScript

import Spotlight from '@/components/spotlight';
import { Card, CardContent } from '@/components/ui/card';
function AdminMonitoring() {
return (
<Card className="!shadow-none relative h-full border-0.5 border-border-button bg-transparent rounded-xl overflow-x-hidden overflow-y-auto">
<Spotlight />
<CardContent className="size-full p-0">
<iframe
className="size-full"
src={`${location.protocol}//${location.hostname}:9090/alerts`}
/>
</CardContent>
</Card>
);
}
export default AdminMonitoring;