[MAJOR][FINAL] MVP

This commit is contained in:
2025-09-27 19:22:32 +05:30
parent 587a71ebf1
commit cc6844d3a3
18 changed files with 529 additions and 74 deletions

View File

@@ -10,8 +10,8 @@ const TaskList = (props: TaskListProps): JSX.Element => {
const { taskGroup, type } = props;
// Generate a random pastel color for the list-color indicator
const randomColor = `hsl(${Math.floor(Math.random() * 360)}, 70%, 70%)`;
return <div className="c-TaskList h-100 mx-2">
{type === "add-new" ? <div className="c-TaskList__new flex-center h-100">
return <div className="c-TaskList h-100 mx-2 d-flex flex-column">
{type === "add-new" ? <div className="c-TaskList__new flex-center h-100 flex-grow-1">
<span className="add-new-list-btn py-2 px-3 cursor-pointer">+ Add New List</span>
</div>
: