@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user