Skip to content

Commit

Permalink
changed some required changes
Browse files Browse the repository at this point in the history
changed some required changes as required
  • Loading branch information
gurramkarthiknetha committed Nov 20, 2024
1 parent ea713df commit bbe20db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/Kanban/Board.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default function KanbanBoard<T extends { id: string }>(
</div>
<DragDropContext onDragEnd={props.onDragEnd}>
<div className="h-full overflow-scroll" ref={board}>
<div className="flex items-stretch px-0 pb-2">
<div className="flex items-stretch px-0 pb-2 max-[915px]:flex-wrap max-[915px]:gap-5 max-[915px]:mb-5">
{props.sections.map((section, i) => (
<KanbanSection<T>
key={i}
Expand Down Expand Up @@ -146,7 +146,7 @@ export function KanbanSection<T extends { id: string }>(
<div
ref={provided.innerRef}
className={
"relative mr-2 w-[300px] shrink-0 rounded-xl bg-secondary-200"
"relative mr-2 w-[300px] shrink-0 rounded-xl bg-secondary-200 max-[915px]:border max-[915px]:border-solid max-[915px]:border-[rgb(168,168,168)]"
}
>
<div className="sticky top-0 rounded-xl bg-secondary-200 pt-2">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Patient/ManagePatients.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ export const PatientManager = () => {
});
}, 500);
}}
className="mr-5 w-full lg:w-fit"
className="mr-5 w-full lg:w-fit mt-2"
>
<CareIcon icon="l-export" />
<span className="lg:my-[3px]">Export</span>
Expand Down
2 changes: 1 addition & 1 deletion src/style/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -1314,4 +1314,4 @@ input[type="number"] {
:root {
--radius: 0.5rem;
}
}
}

0 comments on commit bbe20db

Please sign in to comment.