Merged in release/2021-11-26 (pull request #275)

release/2021-11-26

Approved-by: Patrick Fic
This commit is contained in:
Patrick Fic
2021-11-22 06:25:53 +00:00

View File

@@ -174,18 +174,8 @@ export function ProductionBoardKanbanComponent({
: standardSizes[selectedBreakpoint[0]]
: "250";
const Container = styled.div`
.react-kanban-card-skeleton,
.react-kanban-card,
.react-kanban-card-adder-form {
box-sizing: border-box;
max-width: ${width}px;
min-width: ${width}px;
}
`;
return (
<Container>
<Container width={width}>
<IndefiniteLoading loading={isMoving} />
<PageHeader
title={
@@ -248,3 +238,13 @@ export default connect(
mapStateToProps,
mapDispatchToProps
)(ProductionBoardKanbanComponent);
const Container = styled.div`
.react-kanban-card-skeleton,
.react-kanban-card,
.react-kanban-card-adder-form {
box-sizing: border-box;
max-width: ${(props) => props.width}px;
min-width: ${(props) => props.width}px;
}
`;