diff --git a/src/views/Project.vue b/src/views/Project.vue
index 4a02a72..06f6bc6 100644
--- a/src/views/Project.vue
+++ b/src/views/Project.vue
@@ -6,122 +6,130 @@
Votre brief
-
-
- Votre Brief
-
-
-
-
-
-
-
-
-
-
+
+
+
+ Votre Brief
+
+
+
+
+
+
+
+
+
+
+
Offre Commerciale
-
-
- Offre - 2
- 4 commentaires
-
-
-
- Validé
-
-
-
-
-
-
-
- Offre - 3
- 4 commentaires
-
-
-
-
-
-
-
- Offre Initiale
- 4 commentaires
-
-
-
-
-
+
+
+
+ Offre - 2
+ 4 commentaires
+
+
+
+ Validé
+
+
+
+
+
+
+
+ Offre - 3
+ 4 commentaires
+
+
+
+
+
+
+
+ Offre Initiale
+ 4 commentaires
+
+
+
+
+
+
Brief Enrichi
-
-
- Brief enrichi
- 4 commentaires
-
-
-
- Validé
-
-
-
-
-
-
-
+
+
+
+ Brief enrichi
+ 4 commentaires
+
+
+
+ Validé
+
+
+
+
+
+
+
+
Échantillon Virtuel
-
-
Prochainement disponible
+
+
+
Prochainement disponible
+
@@ -147,12 +155,12 @@ const user = useUserStore().user;
position: relative;
display: flex;
gap: var(--gap);
- overflow-y: auto;
+ overflow-x: auto;
margin: 0 calc(-1 * var(--gutter));
padding: 0 var(--gutter);
+ height: calc(100vh - var(--gutter) * 2 - var(--header-height) - 2.25rem);
}
.kanban > section {
- flex-grow: 1;
min-width: 20rem;
position: relative;
}
@@ -253,7 +261,7 @@ const user = useUserStore().user;
.kanban [data-status="uncompleted"] h2 > span {
border-radius: inherit;
}
-.kanban [data-status="uncompleted"] > div {
+.kanban [data-status="uncompleted"] .cards > * {
min-height: 10rem;
}
.kanban [data-status="uncompleted"]::after {
@@ -268,4 +276,10 @@ const user = useUserStore().user;
line-height: 2.125rem;
padding: 0 var(--space-12);
}
+
+.kanban .cards {
+ padding-top: var(--space-16);
+ max-height: calc(100% - var(--header-height));
+ overflow-y: auto;
+}