feat: Ajouter des listes à puces personnalisées et optimiser le style CSS pour une meilleure présentation

This commit is contained in:
Boris Waaub
2026-03-16 14:45:21 +01:00
parent 225890236d
commit 419d9b4b08
8 changed files with 95 additions and 76 deletions

View File

@@ -2399,10 +2399,6 @@ body {
margin-top: auto;
}
.mt-3 {
margin-top: 0.75rem;
}
.line-clamp-2 {
overflow: hidden;
display: -webkit-box;
@@ -2418,6 +2414,10 @@ body {
display: inline-block;
}
.inline {
display: inline;
}
.flex {
display: flex;
}
@@ -2665,10 +2665,6 @@ body {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-row {
flex-direction: row;
}
.flex-col {
flex-direction: column;
}
@@ -3006,11 +3002,6 @@ 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));
}
@@ -3126,6 +3117,11 @@ body {
padding-bottom: 1rem;
}
.py-5 {
padding-top: 1.25rem;
padding-bottom: 1.25rem;
}
.py-6 {
padding-top: 1.5rem;
padding-bottom: 1.5rem;
@@ -3136,11 +3132,6 @@ body {
padding-bottom: 2rem;
}
.py-5 {
padding-top: 1.25rem;
padding-bottom: 1.25rem;
}
.pb-16 {
padding-bottom: 4rem;
}
@@ -3277,6 +3268,10 @@ body {
font-style: italic;
}
.leading-6 {
line-height: 1.5rem;
}
.leading-7 {
line-height: 1.75rem;
}
@@ -3293,10 +3288,6 @@ body {
line-height: 1.25;
}
.leading-6 {
line-height: 1.5rem;
}
.tracking-tight {
letter-spacing: -0.025em;
}
@@ -3305,10 +3296,6 @@ 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;
@@ -3394,16 +3381,6 @@ body {
color: rgb(189 55 10 / var(--tw-text-opacity, 1));
}
.text-white {
--tw-text-opacity: 1;
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));
@@ -3414,6 +3391,11 @@ body {
color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline {
text-decoration-line: underline;
}
@@ -4831,14 +4813,6 @@ body {
align-items: center;
}
.lg\:justify-end {
justify-content: flex-end;
}
.lg\:justify-between {
justify-content: space-between;
}
.lg\:justify-items-end {
justify-items: end;
}