fix: no need for h-full

This commit is contained in:
2025-06-07 02:21:17 +02:00
parent d309fb3f57
commit eacc8fdd89
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ const ApiServicesPage: FC = () => {
}, [fetchApiServices]); }, [fetchApiServices]);
return ( return (
<div className="relative flex flex-col items-stretch w-full h-full"> <div className="relative flex flex-col items-stretch w-full">
<div className="p-4"> <div className="p-4">
<Breadcrumbs <Breadcrumbs
className="pb-2" className="pb-2"

View File

@ -16,7 +16,7 @@ const AdminUsersPage: FC = () => {
}, [fetchUsers]); }, [fetchUsers]);
return ( return (
<div className="relative flex flex-col items-stretch w-full h-full"> <div className="relative flex flex-col items-stretch w-full">
<div className="p-4"> <div className="p-4">
<Breadcrumbs <Breadcrumbs
className="pb-2" className="pb-2"