feat: Mettre à jour les descriptions des fonctionnalités pour une meilleure clarté et précision

This commit is contained in:
Boris Waaub
2026-03-10 16:15:34 +01:00
parent e87bdce9e6
commit 225890236d
19 changed files with 515 additions and 139 deletions

View File

@@ -2359,6 +2359,10 @@ body {
margin-left: 1rem;
}
.ml-8 {
margin-left: 2rem;
}
.mr-2 {
margin-right: 0.5rem;
}
@@ -2395,12 +2399,8 @@ body {
margin-top: auto;
}
.mr-8 {
margin-right: 2rem;
}
.ml-8 {
margin-left: 2rem;
.mt-3 {
margin-top: 0.75rem;
}
.line-clamp-2 {
@@ -2550,6 +2550,10 @@ body {
width: 2rem;
}
.w-auto {
width: auto;
}
.w-fit {
width: -moz-fit-content;
width: fit-content;
@@ -2559,10 +2563,6 @@ body {
width: 100%;
}
.w-auto {
width: auto;
}
.\!max-w-none {
max-width: none !important;
}
@@ -2627,10 +2627,6 @@ body {
flex-shrink: 0;
}
.shrink-0 {
flex-shrink: 0;
}
.flex-grow {
flex-grow: 1;
}
@@ -2669,6 +2665,10 @@ body {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-row {
flex-direction: row;
}
.flex-col {
flex-direction: column;
}
@@ -2812,12 +2812,6 @@ body {
margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.space-x-12 > :not([hidden]) ~ :not([hidden]) {
--tw-space-x-reverse: 0;
margin-right: calc(3rem * var(--tw-space-x-reverse));
margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)));
}
.overflow-hidden {
overflow: hidden;
}
@@ -2919,6 +2913,11 @@ body {
border-color: rgb(244 104 57 / var(--tw-border-opacity, 1));
}
.border-slate-200 {
--tw-border-opacity: 1;
border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.bg-blue-100 {
--tw-bg-opacity: 1;
background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
@@ -3007,6 +3006,11 @@ body {
background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}
.bg-slate-50 {
--tw-bg-opacity: 1;
background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.bg-gradient-to-r {
background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
@@ -3132,6 +3136,11 @@ body {
padding-bottom: 2rem;
}
.py-5 {
padding-top: 1.25rem;
padding-bottom: 1.25rem;
}
.pb-16 {
padding-bottom: 4rem;
}
@@ -3252,6 +3261,10 @@ body {
font-weight: 500;
}
.font-normal {
font-weight: 400;
}
.font-semibold {
font-weight: 600;
}
@@ -3280,6 +3293,10 @@ body {
line-height: 1.25;
}
.leading-6 {
line-height: 1.5rem;
}
.tracking-tight {
letter-spacing: -0.025em;
}
@@ -3288,6 +3305,10 @@ body {
letter-spacing: 0.05em;
}
.tracking-\[0\.12em\] {
letter-spacing: 0.12em;
}
.\!text-white {
--tw-text-opacity: 1 !important;
color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
@@ -3378,6 +3399,21 @@ body {
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-slate-500 {
--tw-text-opacity: 1;
color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-slate-600 {
--tw-text-opacity: 1;
color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-slate-700 {
--tw-text-opacity: 1;
color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.underline {
text-decoration-line: underline;
}
@@ -4453,11 +4489,6 @@ body {
border-color: rgb(244 104 57 / var(--tw-border-opacity, 1));
}
.hover\:border-primary-600:hover {
--tw-border-opacity: 1;
border-color: rgb(189 55 10 / var(--tw-border-opacity, 1));
}
.hover\:bg-gray-100:hover {
--tw-bg-opacity: 1;
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
@@ -4660,14 +4691,6 @@ body {
}
@media (min-width: 768px) {
.md\:flex {
display: flex;
}
.md\:hidden {
display: none;
}
.md\:w-1\/3 {
width: 33.333333%;
}
@@ -4796,10 +4819,30 @@ body {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lg\:grid-cols-\[1fr_auto\] {
grid-template-columns: 1fr auto;
}
.lg\:flex-row {
flex-direction: row;
}
.lg\:items-center {
align-items: center;
}
.lg\:justify-end {
justify-content: flex-end;
}
.lg\:justify-between {
justify-content: space-between;
}
.lg\:justify-items-end {
justify-items: end;
}
.lg\:p-12 {
padding: 3rem;
}