diff --git a/src/app/task-lists/task-lists.component.html b/src/app/task-lists/task-lists.component.html
index aed06c9..fd96e9b 100644
--- a/src/app/task-lists/task-lists.component.html
+++ b/src/app/task-lists/task-lists.component.html
@@ -1,4 +1,14 @@
-
-
{{list?.name}}
+
+
+
+
+ {{list?.tasks?.length}} tâches
+
+
+ Aucune tâche
+
+
+
{{list?.name}}
+
\ No newline at end of file
diff --git a/src/app/task-lists/task-lists.component.scss b/src/app/task-lists/task-lists.component.scss
index e69de29..006d60e 100644
--- a/src/app/task-lists/task-lists.component.scss
+++ b/src/app/task-lists/task-lists.component.scss
@@ -0,0 +1,23 @@
+.task-list-container {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+
+ .task-list {
+ width: 10rem;
+ margin: 1rem;
+
+ .card {
+ height: 10rem;
+ border: 1px solid black;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ border-radius: .3rem;
+ }
+ h3 {
+ display: flex;
+ justify-content: center;
+ }
+ }
+}
\ No newline at end of file