Skip to content

Commit

Permalink
Issues solved regarding mobile view of Nurse Dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
siddheshThorat04 committed Mar 3, 2025
1 parent d509927 commit f010242
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/Organization/OrganizationView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function OrganizationView({ id, navOrganizationId }: Props) {

return (
<OrganizationLayout id={id} navOrganizationId={navOrganizationId}>
<div className="space-y-6">
<div className="space-y-6 ">
<div className="flex flex-col justify-between items-start gap-4">
<div className="mt-1 flex flex-col justify-start space-y-2 md:flex-row md:justify-between md:space-y-0">
<EntityBadge
Expand Down
6 changes: 3 additions & 3 deletions src/pages/Organization/components/OrganizationLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ export default function OrganizationLayout({
}

return (
<Page title={`${org.name}`}>
<Page title={`${org.name}`} className="w-[95vw]">
{/* Navigation */}
<div className="mt-4">
<Menubar className="w-full h-full overflow-x-auto">
<div className="mt-4 overflow-auto scrollbar-height: [1px]">
<Menubar className="w-full h-full overflow-auto">
{navItems
.filter((item) => item.visibility)
.map((item) => (
Expand Down

0 comments on commit f010242

Please sign in to comment.