diff --git a/ReactLearning/kanban-board/src/App.css b/ReactLearning/kanban-board/src/App.css index 59e6c11..2b8d495 100644 --- a/ReactLearning/kanban-board/src/App.css +++ b/ReactLearning/kanban-board/src/App.css @@ -28,6 +28,7 @@ html { justify-content:flex-start; float: left; width: initial; + position: relative; height: auto; flex-grow: inherit; border-color: #ddd; @@ -42,28 +43,31 @@ html { .taskWrapper{ display: flex; + min-height: 100px; + flex-direction: row; + align-items: stretch; + position: relative; + + + } .prioBlock{ order: 1; flex: 1; - display: block; - height:100vh; - overflow: auto; - background-color: aqua; - width: inherit; + display: flex; + overflow:hidden; + + + + } .taskText{ order: 5; - width: 80%; + flex: 5; height: 100%; } .panel { width: 100%; } -.prioBlock:after -{ - content: '.'; - visibility: hidden; -} \ No newline at end of file diff --git a/ReactLearning/kanban-board/src/components/KBColumn.tsx b/ReactLearning/kanban-board/src/components/KBColumn.tsx index e37f58f..689b0dc 100644 --- a/ReactLearning/kanban-board/src/components/KBColumn.tsx +++ b/ReactLearning/kanban-board/src/components/KBColumn.tsx @@ -29,7 +29,7 @@ const KBColumn = (props: KBColumnProps) => { return (
-
+

{task.title}