Progress Commit

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-05-13 19:52:32 -04:00
parent a0b9f99dd3
commit 095e1e9789
2 changed files with 11 additions and 11 deletions

View File

@@ -173,10 +173,7 @@ export function ProductionBoardKanbanComponent({
const StickyHeader = ({ title }) => (
<Sticky>
{({ style }) => (
<div
className="react-trello-column-header"
style={{ ...style, zIndex: "99", backgroundColor: "#e3e3e3", paddingLeft: "5px" }}
>
<div className="react-trello-column-header" style={{ ...style, zIndex: "99", backgroundColor: "#e3e3e3" }}>
{title}
</div>
)}
@@ -184,7 +181,7 @@ export function ProductionBoardKanbanComponent({
);
const NormalHeader = ({ title }) => (
<div className="react-trello-column-header" style={{ backgroundColor: "#e3e3e3", paddingLeft: "5px" }}>
<div className="react-trello-column-header" style={{ backgroundColor: "#e3e3e3" }}>
{title}
</div>
);
@@ -253,7 +250,7 @@ export function ProductionBoardKanbanComponent({
data={boardLanes}
draggable
handleDragEnd={handleDragEnd}
style={{ height: "100%", backgroundColor: "transparent" }}
style={{ backgroundColor: "transparent" }}
components={components}
/>
</div>